From a965e1d76642095f3f4e5f43d13a8b0379296e43 Mon Sep 17 00:00:00 2001 From: Vladimir Homutov Date: Mon, 3 Apr 2017 17:30:34 +0300 Subject: Mail: configurable socket buffer sizes. The "rcvbuf" and "sndbuf" parameters are now supported by the "listen" directive. --- src/mail/ngx_mail.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/mail/ngx_mail.h') diff --git a/src/mail/ngx_mail.h b/src/mail/ngx_mail.h index 600250820..6ecfefc98 100644 --- a/src/mail/ngx_mail.h +++ b/src/mail/ngx_mail.h @@ -46,6 +46,8 @@ typedef struct { int tcp_keepcnt; #endif int backlog; + int rcvbuf; + int sndbuf; } ngx_mail_listen_t; -- cgit