comparison src/http/ngx_http.h @ 538: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 d41628eb4d0a
children 5c576ea5dbd9
comparison
equal deleted inserted replaced
537:3ca2e495d9de 538:1dcf6adad484
55 #define ngx_http_set_ctx(r, c, module) r->ctx[module.ctx_index] = c; 55 #define ngx_http_set_ctx(r, c, module) r->ctx[module.ctx_index] = c;
56 56
57 57
58 ngx_int_t ngx_http_add_location(ngx_conf_t *cf, ngx_queue_t **locations, 58 ngx_int_t ngx_http_add_location(ngx_conf_t *cf, ngx_queue_t **locations,
59 ngx_http_core_loc_conf_t *clcf); 59 ngx_http_core_loc_conf_t *clcf);
60 ngx_int_t ngx_http_add_listen(ngx_conf_t *cf, ngx_http_core_srv_conf_t *cscf,
61 ngx_http_listen_opt_t *lsopt);
60 62
61 63
62 void ngx_http_init_connection(ngx_connection_t *c); 64 void ngx_http_init_connection(ngx_connection_t *c);
63 65
64 #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME 66 #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
116 size_t ngx_http_get_time(char *buf, time_t t); 118 size_t ngx_http_get_time(char *buf, time_t t);
117 119
118 120
119 121
120 ngx_int_t ngx_http_discard_request_body(ngx_http_request_t *r); 122 ngx_int_t ngx_http_discard_request_body(ngx_http_request_t *r);
123 void ngx_http_discarded_request_body_handler(ngx_http_request_t *r);
121 void ngx_http_block_reading(ngx_http_request_t *r); 124 void ngx_http_block_reading(ngx_http_request_t *r);
122 void ngx_http_test_reading(ngx_http_request_t *r); 125 void ngx_http_test_reading(ngx_http_request_t *r);
123 126
124 127
125 char *ngx_http_types_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); 128 char *ngx_http_types_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);