comparison src/os/unix/ngx_writev_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 3656228c0b56
children f7cd062ee035
comparison
equal deleted inserted replaced
145:85a84f8da62b 146:36af50a5582d
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 {