diff options
author | cjihrig <cjihrig@gmail.com> | 2020-09-02 21:09:58 -0400 |
---|---|---|
committer | cjihrig <cjihrig@gmail.com> | 2020-09-03 11:05:03 -0400 |
commit | 45478378fdaa29cc928ee7c16db470a361b035ee (patch) | |
tree | cd199f8118ce3001bc1ac1c48d2f9346aefe7e87 /docs/src | |
parent | a8bb3b3b2c05dfc1a1192a02669f43a43b91f8cc (diff) | |
download | libuv-45478378fdaa29cc928ee7c16db470a361b035ee.tar.gz libuv-45478378fdaa29cc928ee7c16db470a361b035ee.zip |
doc: correct UV_UDP_MMSG_FREE version added
Refs: https://github.com/libuv/libuv/pull/2836
PR-URL: https://github.com/libuv/libuv/pull/2985
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/udp.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/udp.rst b/docs/src/udp.rst index 706d011b..30aa4593 100644 --- a/docs/src/udp.rst +++ b/docs/src/udp.rst @@ -89,7 +89,7 @@ Data types the `UV_UDP_MMSG_CHUNK` flag cleared and the `UV_UDP_MMSG_FREE` flag set. The callee can now safely free the provided buffer. - .. versionchanged:: 1.39.0 added the `UV_UDP_MMSG_FREE` flag. + .. versionchanged:: 1.40.0 added the `UV_UDP_MMSG_FREE` flag. .. note:: The receive callback will be called with `nread` == 0 and `addr` == NULL when there is @@ -400,7 +400,7 @@ API it must be explicitly requested by passing the `UV_UDP_RECVMMSG` flag to :c:func:`uv_udp_init_ex`. .. versionchanged:: 1.39.0 :c:func:`uv_udp_using_recvmmsg` can be used in `alloc_cb` to - determine if a buffer sized for use with :man:`recvmmsg(2)` should be + determine if a buffer sized for use with :man:`recvmmsg(2)` should be allocated for the current handle/platform. .. c:function:: int uv_udp_using_recvmmsg(uv_udp_t* handle) |