comparison src/http/modules/ngx_http_fastcgi_module.c @ 332:3a91bfeffaba NGINX_0_6_10

nginx 0.6.10 *) Feature: the "open_file_cache", "open_file_cache_retest", and "open_file_cache_errors" directives. *) Bugfix: socket leak; bug appeared in 0.6.7. *) Bugfix: a charset set by the "charset" directive was not appended to the "Content-Type" header set by $r->send_http_header(). *) Bugfix: a segmentation fault might occur in worker process if /dev/poll method was used.
author Igor Sysoev <http://sysoev.ru>
date Mon, 03 Sep 2007 00:00:00 +0400
parents 95183808f549
children 1c519aff5c0c
comparison
equal deleted inserted replaced
331:b69d5e83bf82 332:3a91bfeffaba
1638 * conf->upstream.next_upstream = 0; 1638 * conf->upstream.next_upstream = 0;
1639 * conf->upstream.temp_path = NULL; 1639 * conf->upstream.temp_path = NULL;
1640 * conf->upstream.hide_headers_hash = { NULL, 0 }; 1640 * conf->upstream.hide_headers_hash = { NULL, 0 };
1641 * conf->upstream.hide_headers = NULL; 1641 * conf->upstream.hide_headers = NULL;
1642 * conf->upstream.pass_headers = NULL; 1642 * conf->upstream.pass_headers = NULL;
1643 * conf->upstream.catch_stderr = NULL;
1644 * conf->upstream.schema = { 0, NULL }; 1643 * conf->upstream.schema = { 0, NULL };
1645 * conf->upstream.uri = { 0, NULL }; 1644 * conf->upstream.uri = { 0, NULL };
1646 * conf->upstream.location = NULL; 1645 * conf->upstream.location = NULL;
1647 * conf->upstream.store_lengths = NULL; 1646 * conf->upstream.store_lengths = NULL;
1648 * conf->upstream.store_values = NULL; 1647 * conf->upstream.store_values = NULL;
1672 1671
1673 conf->upstream.intercept_errors = NGX_CONF_UNSET; 1672 conf->upstream.intercept_errors = NGX_CONF_UNSET;
1674 1673
1675 /* "fastcgi_cyclic_temp_file" is disabled */ 1674 /* "fastcgi_cyclic_temp_file" is disabled */
1676 conf->upstream.cyclic_temp_file = 0; 1675 conf->upstream.cyclic_temp_file = 0;
1676
1677 conf->catch_stderr = NGX_CONF_UNSET_PTR;
1677 1678
1678 return conf; 1679 return conf;
1679 } 1680 }
1680 1681
1681 1682