comparison src/os/unix/ngx_solaris_sendfilev_chain.c @ 597:9262f520ce21 release-0.3.20

nginx-0.3.20-RELEASE import *) Bugfix: in SSI handling. *) Bugfix: the ngx_http_memcached_module did not support the keys in the "/usr?args" form.
author Igor Sysoev <igor@sysoev.ru>
date Wed, 11 Jan 2006 15:26:57 +0000
parents 401de5a43ba5
children df449f4a8032
comparison
equal deleted inserted replaced
596:0381e6d3aa70 597:9262f520ce21
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 {