comparison src/core/ngx_connection.h @ 63:36d2c25cc9bb

nginx-0.0.1-2003-02-26-23:21:43 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 26 Feb 2003 20:21:43 +0000
parents e8cdc2989cee
children 4222c496acb3
comparison
equal deleted inserted replaced
62:8ccba41a678e 63:36d2c25cc9bb
77 77
78 EV_VNODE should notify by some signal if diretory tree is changed 78 EV_VNODE should notify by some signal if diretory tree is changed
79 or stat if aged >= N seconds (big enough) 79 or stat if aged >= N seconds (big enough)
80 #endif 80 #endif
81 81
82
83 extern ngx_chain_t *(*ngx_write_chain_proc)
84 (ngx_connection_t *c, ngx_chain_t *in);
85
86
87 ngx_chain_t *ngx_write_chain(ngx_connection_t *c, ngx_chain_t *in, off_t flush);
88
89
90 /* TODO: move it to OS specific file */
91 #if (__FreeBSD__)
92 ngx_chain_t *ngx_freebsd_write_chain(ngx_connection_t *c, ngx_chain_t *in);
93 ngx_chain_t *ngx_aio_write_chain(ngx_connection_t *c, ngx_chain_t *in);
94 #endif
95
96
82 #endif /* _NGX_CONNECTION_H_INCLUDED_ */ 97 #endif /* _NGX_CONNECTION_H_INCLUDED_ */