comparison src/stream/ngx_stream.h @ 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 9606d93aa586
children d514f88053e5
comparison
equal deleted inserted replaced
7845:5772da03faf8 7846:2ab7b55ae4a0
63 int tcp_keepcnt; 63 int tcp_keepcnt;
64 #endif 64 #endif
65 int backlog; 65 int backlog;
66 int rcvbuf; 66 int rcvbuf;
67 int sndbuf; 67 int sndbuf;
68 #if (NGX_HAVE_TCP_FASTOPEN)
69 int fastopen;
70 #endif
68 int type; 71 int type;
69 } ngx_stream_listen_t; 72 } ngx_stream_listen_t;
70 73
71 74
72 typedef struct { 75 typedef struct {