diff options
author | Andrius Bentkus <andrius.bentkus@gmail.com> | 2015-10-29 02:44:26 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2015-10-29 01:27:04 +0100 |
commit | e9b5a86aa68dde78972559a6fcfe91721b97b97d (patch) | |
tree | 42326f4b10c6ba21bf3f3b7c7505a1ca33ef0eec /docs/src | |
parent | 7d7400c87f04aa780257785672735a2708cc9339 (diff) | |
download | libuv-e9b5a86aa68dde78972559a6fcfe91721b97b97d.tar.gz libuv-e9b5a86aa68dde78972559a6fcfe91721b97b97d.zip |
docs: clarify documentation of uv_tcp_init_ex
I think this makes it clear that the flags can't contain any other
information.
PR-URL: https://github.com/libuv/libuv/pull/592
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/tcp.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/tcp.rst b/docs/src/tcp.rst index dd18522d..ca0c9b4a 100644 --- a/docs/src/tcp.rst +++ b/docs/src/tcp.rst @@ -34,7 +34,7 @@ API .. c:function:: int uv_tcp_init_ex(uv_loop_t* loop, uv_tcp_t* handle, unsigned int flags) - Initialize the handle with the specified flags. At the moment the lower 8 bits + Initialize the handle with the specified flags. At the moment only the lower 8 bits of the `flags` parameter are used as the socket domain. A socket will be created for the given domain. If the specified domain is ``AF_UNSPEC`` no socket is created, just like :c:func:`uv_tcp_init`. |