comparison src/os/unix/ngx_solaris_sendfilev_chain.c @ 682:5cb5db9975ba NGINX_1_3_4

nginx 1.3.4 *) Change: the "ipv6only" parameter is now turned on by default for listening IPv6 sockets. *) Feature: the Clang compiler support. *) Bugfix: extra listening sockets might be created. Thanks to Roman Odaisky. *) Bugfix: nginx/Windows might hog CPU if a worker process failed to start. Thanks to Ricardo Villalobos Guevara. *) Bugfix: the "proxy_pass_header", "fastcgi_pass_header", "scgi_pass_header", "uwsgi_pass_header", "proxy_hide_header", "fastcgi_hide_header", "scgi_hide_header", and "uwsgi_hide_header" directives might be inherited incorrectly.
author Igor Sysoev <http://sysoev.ru>
date Tue, 31 Jul 2012 00:00:00 +0400
parents f41d4b305d22
children
comparison
equal deleted inserted replaced
681:625501f84a6b 682:5cb5db9975ba
26 static ssize_t sendfilev(int fd, const struct sendfilevec *vec, 26 static ssize_t sendfilev(int fd, const struct sendfilevec *vec,
27 int sfvcnt, size_t *xferred) 27 int sfvcnt, size_t *xferred)
28 { 28 {
29 return -1; 29 return -1;
30 } 30 }
31
32 ngx_chain_t *ngx_solaris_sendfilev_chain(ngx_connection_t *c, ngx_chain_t *in,
33 off_t limit);
31 34
32 #endif 35 #endif
33 36
34 37
35 #if (IOV_MAX > 64) 38 #if (IOV_MAX > 64)