aboutsummaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/pipe.rst3
-rw-r--r--docs/src/tcp.rst4
-rw-r--r--docs/src/udp.rst2
3 files changed, 4 insertions, 5 deletions
diff --git a/docs/src/pipe.rst b/docs/src/pipe.rst
index 614bb2e3..9fbb1f6c 100644
--- a/docs/src/pipe.rst
+++ b/docs/src/pipe.rst
@@ -38,8 +38,7 @@ API
Open an existing file descriptor or HANDLE as a pipe.
- .. note::
- The user is responsible for setting the file descriptor in non-blocking mode.
+ .. versionchanged:: 1.2.1 the file descriptor is set to non-blocking mode.
.. c:function:: int uv_pipe_bind(uv_pipe_t* handle, const char* name)
diff --git a/docs/src/tcp.rst b/docs/src/tcp.rst
index 2c1001b5..8baedde8 100644
--- a/docs/src/tcp.rst
+++ b/docs/src/tcp.rst
@@ -36,9 +36,7 @@ API
Open an existing file descriptor or SOCKET as a TCP handle.
- .. note::
- The user is responsible for setting the file descriptor in
- non-blocking mode.
+ .. versionchanged:: 1.2.1 the file descriptor is set to non-blocking mode.
.. c:function:: int uv_tcp_nodelay(uv_tcp_t* handle, int enable)
diff --git a/docs/src/udp.rst b/docs/src/udp.rst
index 175ce07a..9c4aa210 100644
--- a/docs/src/udp.rst
+++ b/docs/src/udp.rst
@@ -120,6 +120,8 @@ API
In other words, other datagram-type sockets like raw sockets or netlink
sockets can also be passed to this function.
+ .. versionchanged:: 1.2.1 the file descriptor is set to non-blocking mode.
+
.. c:function:: int uv_udp_bind(uv_udp_t* handle, const struct sockaddr* addr, unsigned int flags)
Bind the UDP handle to an IP address and port.