diff src/stream/ngx_stream.c @ 7846:2ab7b55ae4a0

Stream: the "fastopen" parameter of the "listen" directive. Based on a patch by Anbang Wen.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 20 May 2021 19:59:16 +0300
parents 4f9b72a229c1
children d514f88053e5
line wrap: on
line diff
--- a/src/stream/ngx_stream.c
+++ b/src/stream/ngx_stream.c
@@ -510,6 +510,10 @@ ngx_stream_optimize_servers(ngx_conf_t *
             ls->ipv6only = addr[i].opt.ipv6only;
 #endif
 
+#if (NGX_HAVE_TCP_FASTOPEN)
+            ls->fastopen = addr[i].opt.fastopen;
+#endif
+
 #if (NGX_HAVE_REUSEPORT)
             ls->reuseport = addr[i].opt.reuseport;
 #endif