comparison src/http/ngx_http.h @ 1219:86c5c9288acc

SNI support
author Igor Sysoev <igor@sysoev.ru>
date Tue, 29 May 2007 15:21:09 +0000
parents 4d68c486fcb0
children 202cae9a0c2b 3b7262e720c1
comparison
equal deleted inserted replaced
1218:e081e9c2291c 1219:86c5c9288acc
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);