diff options
author | Piotr Sikora <piotr@cloudflare.com> | 2014-01-30 14:58:21 -0800 |
---|---|---|
committer | Piotr Sikora <piotr@cloudflare.com> | 2014-01-30 14:58:21 -0800 |
commit | 2e57e0609b8cc352fb51df0b0e05309d1cf9589d (patch) | |
tree | 85bd1f6c3701f815f2178a715332893dc87d4c24 /src/os/unix | |
parent | 449e8eeb53d33d6a62622b76bf4862ca983b44f3 (diff) | |
download | nginx-2e57e0609b8cc352fb51df0b0e05309d1cf9589d.tar.gz nginx-2e57e0609b8cc352fb51df0b0e05309d1cf9589d.zip |
Core: handle getsockopt(TCP_FASTOPEN) failures.
Linux returns EOPNOTSUPP for non-TCP sockets and ENOPROTOOPT for TCP
sockets, because getsockopt(TCP_FASTOPEN) is not implemented so far.
While there, lower the log level from ALERT to NOTICE to match other
getsockopt() failures.
Signed-off-by: Piotr Sikora <piotr@cloudflare.com>
Diffstat (limited to 'src/os/unix')
-rw-r--r-- | src/os/unix/ngx_errno.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/os/unix/ngx_errno.h b/src/os/unix/ngx_errno.h index 663e460d9..16cafda31 100644 --- a/src/os/unix/ngx_errno.h +++ b/src/os/unix/ngx_errno.h @@ -34,6 +34,7 @@ typedef int ngx_err_t; #define NGX_ENOSPC ENOSPC #define NGX_EPIPE EPIPE #define NGX_EINPROGRESS EINPROGRESS +#define NGX_ENOPROTOOPT ENOPROTOOPT #define NGX_EOPNOTSUPP EOPNOTSUPP #define NGX_EADDRINUSE EADDRINUSE #define NGX_ECONNABORTED ECONNABORTED |