comparison src/http/ngx_http_core_module.h @ 6246:257b51c37c5a

The HTTP/2 implementation (RFC 7240, 7241). The SPDY support is removed, as it's incompatible with the new module.
author Valentin Bartenev <vbart@nginx.com>
date Fri, 11 Sep 2015 20:13:06 +0300
parents 4f6efabcb09b
children cf3e75cfa951
comparison
equal deleted inserted replaced
6245:3cf25d33886a 6246:257b51c37c5a
77 unsigned bind:1; 77 unsigned bind:1;
78 unsigned wildcard:1; 78 unsigned wildcard:1;
79 #if (NGX_HTTP_SSL) 79 #if (NGX_HTTP_SSL)
80 unsigned ssl:1; 80 unsigned ssl:1;
81 #endif 81 #endif
82 #if (NGX_HTTP_SPDY) 82 #if (NGX_HTTP_V2)
83 unsigned spdy:1; 83 unsigned http2:1;
84 #endif 84 #endif
85 #if (NGX_HAVE_INET6 && defined IPV6_V6ONLY) 85 #if (NGX_HAVE_INET6 && defined IPV6_V6ONLY)
86 unsigned ipv6only:1; 86 unsigned ipv6only:1;
87 #endif 87 #endif
88 #if (NGX_HAVE_REUSEPORT) 88 #if (NGX_HAVE_REUSEPORT)
246 ngx_http_virtual_names_t *virtual_names; 246 ngx_http_virtual_names_t *virtual_names;
247 247
248 #if (NGX_HTTP_SSL) 248 #if (NGX_HTTP_SSL)
249 unsigned ssl:1; 249 unsigned ssl:1;
250 #endif 250 #endif
251 #if (NGX_HTTP_SPDY) 251 #if (NGX_HTTP_V2)
252 unsigned spdy:1; 252 unsigned http2:1;
253 #endif 253 #endif
254 unsigned proxy_protocol:1; 254 unsigned proxy_protocol:1;
255 }; 255 };
256 256
257 257