comparison src/os/unix/ngx_freebsd_init.c @ 354:583decdb82a4 NGINX_0_6_21

nginx 0.6.21 *) Change: if variable values used in a "proxy_pass" directive contain IP-addresses only, then a "resolver" directive is not mandatory. resolver *) Bugfix: a segmentation fault might occur in worker process if a "proxy_pass" directive with URI-part was used; bug appeared in 0.6.19. *) Bugfix: if resolver was used on platform that does not support kqueue, then nginx issued an alert "name is out of response". Thanks to Andrei Nigmatulin. *) Bugfix: if the $server_protocol was used in FastCGI parameters and a request line length was near to the "client_header_buffer_size" directive value, then nginx issued an alert "fastcgi: the request record is too big". *) Bugfix: if a plain text HTTP/0.9 version request was made to HTTPS server, then nginx returned usual response.
author Igor Sysoev <http://sysoev.ru>
date Mon, 03 Dec 2007 00:00:00 +0300
parents dd6c66b5b0e2
children 9121a0a91f47
comparison
equal deleted inserted replaced
353:4a470d9e2ea5 354:583decdb82a4
28 28
29 29
30 static ngx_os_io_t ngx_freebsd_io = { 30 static ngx_os_io_t ngx_freebsd_io = {
31 ngx_unix_recv, 31 ngx_unix_recv,
32 ngx_readv_chain, 32 ngx_readv_chain,
33 ngx_udp_unix_recv,
33 ngx_unix_send, 34 ngx_unix_send,
34 #if (NGX_HAVE_SENDFILE) 35 #if (NGX_HAVE_SENDFILE)
35 ngx_freebsd_sendfile_chain, 36 ngx_freebsd_sendfile_chain,
36 NGX_IO_SENDFILE 37 NGX_IO_SENDFILE
37 #else 38 #else