diff options
author | Roman Arutyunyan <arut@nginx.com> | 2023-08-14 09:21:27 +0400 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2023-08-14 09:21:27 +0400 |
commit | eeb8a9f56f727d2543c8ae7feae0de784e329b27 (patch) | |
tree | a3b6dbde4411df979e93ca7df075cb15a5156850 /src/os/win32/ngx_errno.h | |
parent | 58fc5e2830a0fa70810005ca03fdb9a531719696 (diff) | |
download | nginx-eeb8a9f56f727d2543c8ae7feae0de784e329b27.tar.gz nginx-eeb8a9f56f727d2543c8ae7feae0de784e329b27.zip |
QUIC: path MTU discovery.
MTU selection starts by doubling the initial MTU until the first failure.
Then binary search is used to find the path MTU.
Diffstat (limited to 'src/os/win32/ngx_errno.h')
-rw-r--r-- | src/os/win32/ngx_errno.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/os/win32/ngx_errno.h b/src/os/win32/ngx_errno.h index 255a39d53..1e73a832b 100644 --- a/src/os/win32/ngx_errno.h +++ b/src/os/win32/ngx_errno.h @@ -57,6 +57,7 @@ typedef DWORD ngx_err_t; #define NGX_EILSEQ ERROR_NO_UNICODE_TRANSLATION #define NGX_ELOOP 0 #define NGX_EBADF WSAEBADF +#define NGX_EMSGSIZE WSAEMSGSIZE #define NGX_EALREADY WSAEALREADY #define NGX_EINVAL WSAEINVAL |