summaryrefslogtreecommitdiff
path: root/deps/uv/docs/src/tcp.rst
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2018-09-21 10:14:00 -0400
committerDaniel Bevenius <daniel.bevenius@gmail.com>2018-09-24 07:14:45 +0200
commit2790db5e3d74c4f7521cc27a1115228700dd4049 (patch)
tree14690a4e418d74d387491dc7afcbcde02c62e99b /deps/uv/docs/src/tcp.rst
parentea8000f1195801cf602946c6bd85b8b5dbe83d43 (diff)
downloadandroid-node-v8-2790db5e3d74c4f7521cc27a1115228700dd4049.tar.gz
android-node-v8-2790db5e3d74c4f7521cc27a1115228700dd4049.tar.bz2
android-node-v8-2790db5e3d74c4f7521cc27a1115228700dd4049.zip
deps: upgrade to libuv 1.23.1
PR-URL: https://github.com/nodejs/node/pull/22997 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'deps/uv/docs/src/tcp.rst')
-rw-r--r--deps/uv/docs/src/tcp.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/uv/docs/src/tcp.rst b/deps/uv/docs/src/tcp.rst
index e761b460d0..d20a6362af 100644
--- a/deps/uv/docs/src/tcp.rst
+++ b/deps/uv/docs/src/tcp.rst
@@ -86,13 +86,13 @@ API
.. c:function:: int uv_tcp_getsockname(const uv_tcp_t* handle, struct sockaddr* name, int* namelen)
- Get the current address to which the handle is bound. `addr` must point to
+ Get the current address to which the handle is bound. `name` must point to
a valid and big enough chunk of memory, ``struct sockaddr_storage`` is
recommended for IPv4 and IPv6 support.
.. c:function:: int uv_tcp_getpeername(const uv_tcp_t* handle, struct sockaddr* name, int* namelen)
- Get the address of the peer connected to the handle. `addr` must point to
+ Get the address of the peer connected to the handle. `name` must point to
a valid and big enough chunk of memory, ``struct sockaddr_storage`` is
recommended for IPv4 and IPv6 support.