diff options
author | Valentin Bartenev <vbart@nginx.com> | 2013-03-20 10:36:57 +0000 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2013-03-20 10:36:57 +0000 |
commit | 2686cb44529462614a1846f29922bb68852dafb6 (patch) | |
tree | a46abd5e6cab450dbc23f220a424a296c0877e2b /src/http/ngx_http_request.h | |
parent | cf64a6c5361b23f1aa182e50537ebb4c6c34c453 (diff) | |
download | nginx-2686cb44529462614a1846f29922bb68852dafb6.tar.gz nginx-2686cb44529462614a1846f29922bb68852dafb6.zip |
Preliminary experimental support for SPDY draft 2.
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index c33f9a945..5c62785e2 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -429,6 +429,9 @@ struct ngx_http_request_s { ngx_uint_t err_status; ngx_http_connection_t *http_connection; +#if (NGX_HTTP_SPDY) + ngx_http_spdy_stream_t *spdy_stream; +#endif ngx_http_log_handler_pt log_handler; |