comparison src/stream/ngx_stream.h @ 6975:d7ce41bdf050

Stream: configurable socket buffer sizes. The "rcvbuf" and "sndbuf" parameters are now supported by the "listen" directive.
author Vladimir Homutov <vl@nginx.com>
date Mon, 03 Apr 2017 17:29:19 +0300
parents d2b2ff157da5
children 4f9b72a229c1
comparison
equal deleted inserted replaced
6974:289403abc84e 6975:d7ce41bdf050
60 int tcp_keepidle; 60 int tcp_keepidle;
61 int tcp_keepintvl; 61 int tcp_keepintvl;
62 int tcp_keepcnt; 62 int tcp_keepcnt;
63 #endif 63 #endif
64 int backlog; 64 int backlog;
65 int rcvbuf;
66 int sndbuf;
65 int type; 67 int type;
66 } ngx_stream_listen_t; 68 } ngx_stream_listen_t;
67 69
68 70
69 typedef struct { 71 typedef struct {