diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2007-05-29 15:21:09 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2007-05-29 15:21:09 +0000 |
| commit | e60303cdcaddf120a81ddb2a3a921f553af75705 (patch) | |
| tree | 676dd8dc90f177caa928fbfe0e081c17ddb3a166 /src/http/ngx_http.h | |
| parent | f44ea0bbf61c9dac9221ccde9492f28004ef4e25 (diff) | |
| download | nginx-e60303cdcaddf120a81ddb2a3a921f553af75705.tar.gz nginx-e60303cdcaddf120a81ddb2a3a921f553af75705.tar.bz2 | |
SNI support
Diffstat (limited to 'src/http/ngx_http.h')
| -rw-r--r-- | src/http/ngx_http.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/http/ngx_http.h b/src/http/ngx_http.h index 96a310fbd..266873ad6 100644 --- a/src/http/ngx_http.h +++ b/src/http/ngx_http.h @@ -59,6 +59,10 @@ struct ngx_http_log_ctx_s { void ngx_http_init_connection(ngx_connection_t *c); +#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME +int ngx_http_ssl_servername(ngx_ssl_conn_t *ssl_conn, int *ad, void *arg); +#endif + ngx_int_t ngx_http_parse_request_line(ngx_http_request_t *r, ngx_buf_t *b); ngx_int_t ngx_http_parse_complex_uri(ngx_http_request_t *r); ngx_int_t ngx_http_parse_unsafe_uri(ngx_http_request_t *r, ngx_str_t *uri, |
