comparison src/http/ngx_http_core_module.h @ 8167:5d91389e0fd3 quic

Initial QUIC support in http.
author Sergey Kandaurov <pluknet@nginx.com>
date Fri, 28 Feb 2020 13:09:51 +0300
parents 7999d3fbb765
children 5b7ec588de48
comparison
equal deleted inserted replaced
8166:7999d3fbb765 8167:5d91389e0fd3
73 unsigned default_server:1; 73 unsigned default_server:1;
74 unsigned bind:1; 74 unsigned bind:1;
75 unsigned wildcard:1; 75 unsigned wildcard:1;
76 unsigned ssl:1; 76 unsigned ssl:1;
77 unsigned http2:1; 77 unsigned http2:1;
78 unsigned http3:1;
78 #if (NGX_HAVE_INET6) 79 #if (NGX_HAVE_INET6)
79 unsigned ipv6only:1; 80 unsigned ipv6only:1;
80 #endif 81 #endif
81 unsigned deferred_accept:1; 82 unsigned deferred_accept:1;
82 unsigned reuseport:1; 83 unsigned reuseport:1;
236 237
237 ngx_http_virtual_names_t *virtual_names; 238 ngx_http_virtual_names_t *virtual_names;
238 239
239 unsigned ssl:1; 240 unsigned ssl:1;
240 unsigned http2:1; 241 unsigned http2:1;
242 unsigned http3:1;
241 unsigned proxy_protocol:1; 243 unsigned proxy_protocol:1;
242 }; 244 };
243 245
244 246
245 typedef struct { 247 typedef struct {