comparison src/event/modules/ngx_eventport_module.c @ 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 6eb1e38f0f1f
children 24def6198d7f
comparison
equal deleted inserted replaced
289:a9323c9433a7 290:f745bf973510
465 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, cycle->log, 0, 465 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
466 "eventport: fd:%d, ev:%04Xd", 466 "eventport: fd:%d, ev:%04Xd",
467 event_list[i].portev_object, revents); 467 event_list[i].portev_object, revents);
468 468
469 if (revents & (POLLERR|POLLHUP|POLLNVAL)) { 469 if (revents & (POLLERR|POLLHUP|POLLNVAL)) {
470 ngx_log_error(NGX_LOG_ALERT, cycle->log, 0, 470 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
471 "port_getn() error fd:%d ev:%04Xd", 471 "port_getn() error fd:%d ev:%04Xd",
472 event_list[i].portev_object, revents); 472 event_list[i].portev_object, revents);
473 } 473 }
474 474
475 if (revents & ~(POLLIN|POLLOUT|POLLERR|POLLHUP|POLLNVAL)) { 475 if (revents & ~(POLLIN|POLLOUT|POLLERR|POLLHUP|POLLNVAL)) {
476 ngx_log_error(NGX_LOG_ALERT, cycle->log, 0, 476 ngx_log_error(NGX_LOG_ALERT, cycle->log, 0,
477 "strange port_getn() events fd:%d ev:%04Xd", 477 "strange port_getn() events fd:%d ev:%04Xd",