comparison src/stream/ngx_stream.h @ 6169:f654addf0eea

Stream: fixed "reuseport" to actually work.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 05 Jun 2015 23:03:13 +0300
parents 4f6efabcb09b
children c13091e6292c
comparison
equal deleted inserted replaced
6168:62869a9b2e7d 6169:f654addf0eea
107 unsigned ssl:1; 107 unsigned ssl:1;
108 #endif 108 #endif
109 #if (NGX_HAVE_INET6 && defined IPV6_V6ONLY) 109 #if (NGX_HAVE_INET6 && defined IPV6_V6ONLY)
110 unsigned ipv6only:1; 110 unsigned ipv6only:1;
111 #endif 111 #endif
112 #if (NGX_HAVE_REUSEPORT)
113 unsigned reuseport:1;
114 #endif
112 unsigned so_keepalive:2; 115 unsigned so_keepalive:2;
113 #if (NGX_HAVE_KEEPALIVE_TUNABLE) 116 #if (NGX_HAVE_KEEPALIVE_TUNABLE)
114 int tcp_keepidle; 117 int tcp_keepidle;
115 int tcp_keepintvl; 118 int tcp_keepintvl;
116 int tcp_keepcnt; 119 int tcp_keepcnt;