comparison src/os/unix/ngx_os.h @ 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 e916a291e9aa
children 0b6053502c55
comparison
equal deleted inserted replaced
353:4a470d9e2ea5 354:583decdb82a4
23 off_t limit); 23 off_t limit);
24 24
25 typedef struct { 25 typedef struct {
26 ngx_recv_pt recv; 26 ngx_recv_pt recv;
27 ngx_recv_chain_pt recv_chain; 27 ngx_recv_chain_pt recv_chain;
28 ngx_recv_pt udp_recv;
28 ngx_send_pt send; 29 ngx_send_pt send;
29 ngx_send_chain_pt send_chain; 30 ngx_send_chain_pt send_chain;
30 ngx_uint_t flags; 31 ngx_uint_t flags;
31 } ngx_os_io_t; 32 } ngx_os_io_t;
32 33
39 ngx_int_t ngx_daemon(ngx_log_t *log); 40 ngx_int_t ngx_daemon(ngx_log_t *log);
40 41
41 42
42 ssize_t ngx_unix_recv(ngx_connection_t *c, u_char *buf, size_t size); 43 ssize_t ngx_unix_recv(ngx_connection_t *c, u_char *buf, size_t size);
43 ssize_t ngx_readv_chain(ngx_connection_t *c, ngx_chain_t *entry); 44 ssize_t ngx_readv_chain(ngx_connection_t *c, ngx_chain_t *entry);
45 ssize_t ngx_udp_unix_recv(ngx_connection_t *c, u_char *buf, size_t size);
44 ssize_t ngx_unix_send(ngx_connection_t *c, u_char *buf, size_t size); 46 ssize_t ngx_unix_send(ngx_connection_t *c, u_char *buf, size_t size);
45 ngx_chain_t *ngx_writev_chain(ngx_connection_t *c, ngx_chain_t *in, 47 ngx_chain_t *ngx_writev_chain(ngx_connection_t *c, ngx_chain_t *in,
46 off_t limit); 48 off_t limit);
47 49
48 50