diff options
author | Saúl Ibarra Corretgé <s@saghul.net> | 2024-03-22 22:11:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-22 22:11:23 +0100 |
commit | 6adeeacee7eb997d60552351b43d65b494745700 (patch) | |
tree | d653b8b4896494829fe7f95c4db68141c8a9a4c2 /docs/src | |
parent | f55628eed00910f4c49551c54a58a074948c6bd1 (diff) | |
download | libuv-6adeeacee7eb997d60552351b43d65b494745700.tar.gz libuv-6adeeacee7eb997d60552351b43d65b494745700.zip |
unix,win: error on zero delay tcp keepalive
Closes: https://github.com/libuv/libuv/pull/4350
Closes: https://github.com/libuv/libuv/issues/3487
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/tcp.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/src/tcp.rst b/docs/src/tcp.rst index cccc86bb..f351214f 100644 --- a/docs/src/tcp.rst +++ b/docs/src/tcp.rst @@ -65,6 +65,10 @@ API at the end of this procedure, then the handle is destroyed with a ``UV_ETIMEDOUT`` error passed to the corresponding callback. + If `delay` is less than 1 then ``UV_EINVAL`` is returned. + + .. versionchanged:: 1.49.0 If `delay` is less than 1 then ``UV_EINVAL``` is returned. + .. c:function:: int uv_tcp_simultaneous_accepts(uv_tcp_t* handle, int enable) Enable / disable simultaneous asynchronous accept requests that are |