comparison src/os/unix/ngx_solaris_sendfilev_chain.c @ 146:36af50a5582d NGINX_0_3_20

nginx 0.3.20 *) Bugfix: in SSI handling. *) Bugfix: the ngx_http_memcached_module did not support the keys in the "/usr?args" form.
author Igor Sysoev <http://sysoev.ru>
date Wed, 11 Jan 2006 00:00:00 +0300
parents 1898c6d03d90
children 30862655219e
comparison
equal deleted inserted replaced
145:85a84f8da62b 146:36af50a5582d
29 } 29 }
30 30
31 #endif 31 #endif
32 32
33 33
34 #define NGX_SENDFILEVECS 16 34 #if (IOV_MAX > 64)
35 #define NGX_SENDFILEVECS 64
36 #else
37 #define NGX_SENDFILEVECS IOV_MAX
38 #endif
39
35 40
36 41
37 ngx_chain_t * 42 ngx_chain_t *
38 ngx_solaris_sendfilev_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit) 43 ngx_solaris_sendfilev_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit)
39 { 44 {