comparison src/core/ngx_connection.c @ 530:4c5d2c627a6c NGINX_0_8_17

nginx 0.8.17 *) Security: now "/../" are disabled in "Destination" request header line. *) Change: now $host variable value is always low case. *) Feature: the $ssl_session_id variable. *) Bugfix: socket leak; the bug had appeared in 0.8.11.
author Igor Sysoev <http://sysoev.ru>
date Mon, 28 Sep 2009 00:00:00 +0400
parents 207ae3ff0444
children 1dcf6adad484
comparison
equal deleted inserted replaced
529:b8ac674b0ec9 530:4c5d2c627a6c
915 case NGX_ERROR_IGNORE_ECONNRESET: 915 case NGX_ERROR_IGNORE_ECONNRESET:
916 case NGX_ERROR_INFO: 916 case NGX_ERROR_INFO:
917 level = NGX_LOG_INFO; 917 level = NGX_LOG_INFO;
918 break; 918 break;
919 919
920 case NGX_ERROR_ERR: 920 default:
921 level = NGX_LOG_ERR; 921 level = NGX_LOG_ERR;
922 break;
923
924 default:
925 level = NGX_LOG_ALERT;
926 } 922 }
927 923
928 } else { 924 } else {
929 level = NGX_LOG_ALERT; 925 level = NGX_LOG_ALERT;
930 } 926 }