comparison src/http/ngx_http_core_module.h @ 8166:7999d3fbb765 quic

HTTP UDP layer, QUIC support autotest.
author Sergey Kandaurov <pluknet@nginx.com>
date Fri, 28 Feb 2020 13:09:51 +0300
parents c19ca381b2e6
children 5d91389e0fd3
comparison
equal deleted inserted replaced
8165:b1eb42a5761f 8166:7999d3fbb765
84 unsigned proxy_protocol:1; 84 unsigned proxy_protocol:1;
85 85
86 int backlog; 86 int backlog;
87 int rcvbuf; 87 int rcvbuf;
88 int sndbuf; 88 int sndbuf;
89 int type;
89 #if (NGX_HAVE_SETFIB) 90 #if (NGX_HAVE_SETFIB)
90 int setfib; 91 int setfib;
91 #endif 92 #endif
92 #if (NGX_HAVE_TCP_FASTOPEN) 93 #if (NGX_HAVE_TCP_FASTOPEN)
93 int fastopen; 94 int fastopen;
264 } ngx_http_port_t; 265 } ngx_http_port_t;
265 266
266 267
267 typedef struct { 268 typedef struct {
268 ngx_int_t family; 269 ngx_int_t family;
270 ngx_int_t type;
269 in_port_t port; 271 in_port_t port;
270 ngx_array_t addrs; /* array of ngx_http_conf_addr_t */ 272 ngx_array_t addrs; /* array of ngx_http_conf_addr_t */
271 } ngx_http_conf_port_t; 273 } ngx_http_conf_port_t;
272 274
273 275