diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2020-02-28 13:09:51 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2020-02-28 13:09:51 +0300 |
commit | 26ac1c73f0fe90c77cbad84a6b4ef5712e35ba52 (patch) | |
tree | 9860cd3f43f9fae5b3d5656b273b4910c504835e /src/core/ngx_connection.h | |
parent | e92cb24f40b865e3cc5b9f0993e328e4f0642e0f (diff) | |
download | nginx-26ac1c73f0fe90c77cbad84a6b4ef5712e35ba52.tar.gz nginx-26ac1c73f0fe90c77cbad84a6b4ef5712e35ba52.zip |
Initial QUIC support in http.
Diffstat (limited to 'src/core/ngx_connection.h')
-rw-r--r-- | src/core/ngx_connection.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/ngx_connection.h b/src/core/ngx_connection.h index ad6556d0c..0d7e2166b 100644 --- a/src/core/ngx_connection.h +++ b/src/core/ngx_connection.h @@ -147,13 +147,14 @@ struct ngx_connection_s { socklen_t socklen; ngx_str_t addr_text; - ngx_proxy_protocol_t *proxy_protocol; + ngx_proxy_protocol_t *proxy_protocol; #if (NGX_SSL || NGX_COMPAT) - ngx_ssl_connection_t *ssl; + ngx_quic_connection_t *quic; + ngx_ssl_connection_t *ssl; #endif - ngx_udp_connection_t *udp; + ngx_udp_connection_t *udp; struct sockaddr *local_sockaddr; socklen_t local_socklen; |