comparison src/http/ngx_http_core_module.h @ 5121:c0f7b94e88ba

Preliminary experimental support for SPDY draft 2.
author Valentin Bartenev <vbart@nginx.com>
date Wed, 20 Mar 2013 10:36:57 +0000
parents 7f1cbcc71327
children 692afcea9d0d
comparison
equal deleted inserted replaced
5120:7956af6b6a02 5121:c0f7b94e88ba
73 unsigned bind:1; 73 unsigned bind:1;
74 unsigned wildcard:1; 74 unsigned wildcard:1;
75 #if (NGX_HTTP_SSL) 75 #if (NGX_HTTP_SSL)
76 unsigned ssl:1; 76 unsigned ssl:1;
77 #endif 77 #endif
78 #if (NGX_HTTP_SPDY)
79 unsigned spdy:1;
80 #endif
78 #if (NGX_HAVE_INET6 && defined IPV6_V6ONLY) 81 #if (NGX_HAVE_INET6 && defined IPV6_V6ONLY)
79 unsigned ipv6only:1; 82 unsigned ipv6only:1;
80 #endif 83 #endif
81 unsigned so_keepalive:2; 84 unsigned so_keepalive:2;
82 85
230 ngx_http_core_srv_conf_t *default_server; 233 ngx_http_core_srv_conf_t *default_server;
231 234
232 ngx_http_virtual_names_t *virtual_names; 235 ngx_http_virtual_names_t *virtual_names;
233 236
234 #if (NGX_HTTP_SSL) 237 #if (NGX_HTTP_SSL)
235 ngx_uint_t ssl; /* unsigned ssl:1; */ 238 unsigned ssl:1;
239 #endif
240 #if (NGX_HTTP_SPDY)
241 unsigned spdy:1;
236 #endif 242 #endif
237 }; 243 };
238 244
239 245
240 typedef struct { 246 typedef struct {