comparison src/os/unix/ngx_process_cycle.c @ 550:1dcf6adad484 NGINX_0_8_21

nginx 0.8.21 *) Feature: now the "-V" switch shows TLS SNI support. *) Feature: the "listen" directive of the HTTP module supports unix domain sockets. Thanks to Hongli Lai. *) Feature: the "default_server" parameter of the "listen" directive. *) Feature: now a "default" parameter is not required to set listen socket options. *) Bugfix: nginx did not support dates in 2038 year on 32-bit platforms; *) Bugfix: socket leak; the bug had appeared in 0.8.11.
author Igor Sysoev <http://sysoev.ru>
date Mon, 26 Oct 2009 00:00:00 +0300
parents 86dad910eeb6
children 2b9e388c61f1
comparison
equal deleted inserted replaced
549:3ca2e495d9de 550:1dcf6adad484
673 if (ngx_modules[i]->exit_master) { 673 if (ngx_modules[i]->exit_master) {
674 ngx_modules[i]->exit_master(cycle); 674 ngx_modules[i]->exit_master(cycle);
675 } 675 }
676 } 676 }
677 677
678 ngx_close_listening_sockets(cycle);
679
678 /* 680 /*
679 * Copy ngx_cycle->log related data to the special static exit cycle, 681 * Copy ngx_cycle->log related data to the special static exit cycle,
680 * log, and log file structures enough to allow a signal handler to log. 682 * log, and log file structures enough to allow a signal handler to log.
681 * The handler may be called when standard ngx_cycle->log allocated from 683 * The handler may be called when standard ngx_cycle->log allocated from
682 * ngx_cycle->pool is already destroyed. 684 * ngx_cycle->pool is already destroyed.