comparison src/core/ngx_connection.h @ 5456:692afcea9d0d

Added support for TCP_FASTOPEN supported in Linux >= 3.7.1. --- auto/unix | 12 ++++++++++++ src/core/ngx_connection.c | 32 ++++++++++++++++++++++++++++++++ src/core/ngx_connection.h | 4 ++++ src/http/ngx_http.c | 4 ++++ src/http/ngx_http_core_module.c | 21 +++++++++++++++++++++ src/http/ngx_http_core_module.h | 3 +++ 6 files changed, 76 insertions(+)
author Mathew Rodley <mathew@rodley.com.au>
date Tue, 03 Dec 2013 22:07:03 +0400
parents 93713d4b99c3
children 1ab1cf63f885
comparison
equal deleted inserted replaced
5455:8f2c69418045 5456:692afcea9d0d
76 char *accept_filter; 76 char *accept_filter;
77 #endif 77 #endif
78 #endif 78 #endif
79 #if (NGX_HAVE_SETFIB) 79 #if (NGX_HAVE_SETFIB)
80 int setfib; 80 int setfib;
81 #endif
82
83 #if (NGX_HAVE_TCP_FASTOPEN)
84 int fastopen;
81 #endif 85 #endif
82 86
83 }; 87 };
84 88
85 89