summaryrefslogtreecommitdiff
path: root/deps/uv/docs/src/handle.rst
diff options
context:
space:
mode:
Diffstat (limited to 'deps/uv/docs/src/handle.rst')
-rw-r--r--deps/uv/docs/src/handle.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/deps/uv/docs/src/handle.rst b/deps/uv/docs/src/handle.rst
index 544794db06..0a25bfa8b2 100644
--- a/deps/uv/docs/src/handle.rst
+++ b/deps/uv/docs/src/handle.rst
@@ -60,6 +60,9 @@ Data types
a ``UV_ENOBUFS`` error will be triggered in the :c:type:`uv_udp_recv_cb` or the
:c:type:`uv_read_cb` callback.
+ Each buffer is used only once and the user is responsible for freeing it in the
+ :c:type:`uv_udp_recv_cb` or the :c:type:`uv_read_cb` callback.
+
A suggested size (65536 at the moment in most cases) is provided, but it's just an indication,
not related in any way to the pending data to be read. The user is free to allocate the amount
of memory they decide.
@@ -87,7 +90,7 @@ Public members
.. c:member:: uv_loop_t* uv_handle_t.loop
- Pointer to the :c:type:`uv_loop_t` where the handle is running on. Readonly.
+ Pointer to the :c:type:`uv_loop_t` the handle is running on. Readonly.
.. c:member:: uv_handle_type uv_handle_t.type