comparison src/core/ngx_connection.h @ 7999:0d2b2664b41c quic

QUIC: added "quic" listen parameter. The parameter allows processing HTTP/0.9-2 over QUIC. Also, introduced ngx_http_quic_module and moved QUIC settings there
author Roman Arutyunyan <arut@nginx.com>
date Tue, 21 Jul 2020 23:09:22 +0300
parents db8fe75c9c7a
children feec2cc762f6
comparison
equal deleted inserted replaced
7998:f537f99b86ee 7999:0d2b2664b41c
148 socklen_t socklen; 148 socklen_t socklen;
149 ngx_str_t addr_text; 149 ngx_str_t addr_text;
150 150
151 ngx_proxy_protocol_t *proxy_protocol; 151 ngx_proxy_protocol_t *proxy_protocol;
152 152
153 #if (NGX_SSL || NGX_COMPAT) 153 #if (NGX_QUIC || NGX_COMPAT)
154 ngx_quic_connection_t *quic; 154 ngx_quic_connection_t *quic;
155 ngx_quic_stream_t *qs; 155 ngx_quic_stream_t *qs;
156 #endif
157
158 #if (NGX_SSL || NGX_COMPAT)
156 ngx_ssl_connection_t *ssl; 159 ngx_ssl_connection_t *ssl;
157 #endif 160 #endif
158 161
159 ngx_udp_connection_t *udp; 162 ngx_udp_connection_t *udp;
160 163