comparison src/http/ngx_http.h @ 306:55328d69b335 NGINX_0_5_23

nginx 0.5.23 *) Feature: the ngx_http_ssl_module supports Server Name Indication TLS extension. *) Feature: the "fastcgi_catch_stderr" directive. Thanks to Nick S. Grechukh, OWOX project. *) Bugfix: a segmentation fault occurred in master process if two virtual servers should bind() to the overlapping ports. *) Bugfix: if nginx was built with ngx_http_perl_module and perl supported threads, then during second reconfiguration the error messages "panic: MUTEX_LOCK" and "perl_parse() failed" were issued. *) Bugfix: in the HTTPS protocol in the "proxy_pass" directive.
author Igor Sysoev <http://sysoev.ru>
date Mon, 04 Jun 2007 00:00:00 +0400
parents 0effe91f6083
children 9fc4ab6673f9
comparison
equal deleted inserted replaced
305:892db29abb4f 306:55328d69b335
57 #define ngx_http_set_ctx(r, c, module) r->ctx[module.ctx_index] = c; 57 #define ngx_http_set_ctx(r, c, module) r->ctx[module.ctx_index] = c;
58 58
59 59
60 void ngx_http_init_connection(ngx_connection_t *c); 60 void ngx_http_init_connection(ngx_connection_t *c);
61 61
62 #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
63 int ngx_http_ssl_servername(ngx_ssl_conn_t *ssl_conn, int *ad, void *arg);
64 #endif
65
62 ngx_int_t ngx_http_parse_request_line(ngx_http_request_t *r, ngx_buf_t *b); 66 ngx_int_t ngx_http_parse_request_line(ngx_http_request_t *r, ngx_buf_t *b);
63 ngx_int_t ngx_http_parse_complex_uri(ngx_http_request_t *r); 67 ngx_int_t ngx_http_parse_complex_uri(ngx_http_request_t *r);
64 ngx_int_t ngx_http_parse_unsafe_uri(ngx_http_request_t *r, ngx_str_t *uri, 68 ngx_int_t ngx_http_parse_unsafe_uri(ngx_http_request_t *r, ngx_str_t *uri,
65 ngx_str_t *args, ngx_uint_t *flags); 69 ngx_str_t *args, ngx_uint_t *flags);
66 ngx_int_t ngx_http_parse_header_line(ngx_http_request_t *r, ngx_buf_t *b); 70 ngx_int_t ngx_http_parse_header_line(ngx_http_request_t *r, ngx_buf_t *b);