comparison src/core/ngx_connection.h @ 290:f745bf973510 NGINX_0_5_15

nginx 0.5.15 *) Feature: the mail proxy supports authenticated SMTP proxying and the "smtp_auth", "smtp_capablities", and "xclient" directives. Thanks to Anton Yuzhaninov and Maxim Dounin. *) Feature: now the keep-alive connections are closed just after receiving the reconfiguration signal. *) Change: the "imap" and "auth" directives were renamed to the "mail" and "pop3_auth" directives. *) Bugfix: a segmentation fault occurred in worker process if the CRAM-MD5 authentication method was used and the APOP method was disabled. *) Bugfix: if the "starttls only" directive was used in POP3 protocol, then nginx allowed authentication without switching to the SSL mode. *) Bugfix: worker processes did not exit after reconfiguration and did not rotate logs if the eventport method was used. *) Bugfix: a worker process may got caught in an endless loop, if the "ip_hash" directive was used. *) Bugfix: now nginx does not log some alerts if eventport or /dev/poll methods are used.
author Igor Sysoev <http://sysoev.ru>
date Mon, 19 Mar 2007 00:00:00 +0300
parents f3ec44f4a53b
children
comparison
equal deleted inserted replaced
289:a9323c9433a7 290:f745bf973510
141 unsigned unexpected_eof:1; 141 unsigned unexpected_eof:1;
142 unsigned timedout:1; 142 unsigned timedout:1;
143 unsigned error:1; 143 unsigned error:1;
144 unsigned destroyed:1; 144 unsigned destroyed:1;
145 145
146 unsigned idle:1;
147 unsigned close:1;
148
146 unsigned sendfile:1; 149 unsigned sendfile:1;
147 unsigned sndlowat:1; 150 unsigned sndlowat:1;
148 unsigned tcp_nodelay:2; /* ngx_connection_tcp_nodelay_e */ 151 unsigned tcp_nodelay:2; /* ngx_connection_tcp_nodelay_e */
149 unsigned tcp_nopush:2; /* ngx_connection_tcp_nopush_e */ 152 unsigned tcp_nopush:2; /* ngx_connection_tcp_nopush_e */
150 153