comparison src/os/unix/ngx_writev_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 284cc140593b
children f69d1aab6a0f
comparison
equal deleted inserted replaced
596:0381e6d3aa70 597:9262f520ce21
7 #include <ngx_config.h> 7 #include <ngx_config.h>
8 #include <ngx_core.h> 8 #include <ngx_core.h>
9 #include <ngx_event.h> 9 #include <ngx_event.h>
10 10
11 11
12 #define NGX_IOVS 16 12 #if (IOV_MAX > 64)
13 #define NGX_IOVS 64
14 #else
15 #define NGX_IOVS IOV_MAX
16 #endif
13 17
14 18
15 ngx_chain_t * 19 ngx_chain_t *
16 ngx_writev_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit) 20 ngx_writev_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit)
17 { 21 {