Lines Matching refs:UDP
4 :c:type:`uv_udp_t` --- UDP handle
7 UDP handles encapsulate UDP communication for both clients and servers.
15 UDP handle type.
19 UDP send request type.
60 * This sets IP_RECVERR for IPv4 and IPV6_RECVERR for IPv6 UDP sockets on
94 * `handle`: UDP handle
113 flag set. If a UDP socket error occurs, `nread` will be < 0. In either scenario,
120 nothing to read, and with `nread` == 0 and `addr` != NULL when an empty UDP packet is
149 UDP handle where this send request is taking place.
159 Initialize a new UDP handle. The actual socket is created lazily.
178 Opens an existing file descriptor or Windows SOCKET as a UDP handle.
194 Bind the UDP handle to an IP address and port.
196 :param handle: UDP handle. Should have been initialized with
223 Associate the UDP handle to a remote address and port, so every
230 :param handle: UDP handle. Should have been initialized with
242 Get the remote IP and port of the UDP handle on connected UDP handles.
245 :param handle: UDP handle. Should have been initialized with
261 Get the local IP and port of the UDP handle.
263 :param handle: UDP handle. Should have been initialized with
279 :param handle: UDP handle. Should have been initialized with
294 :param handle: UDP handle. Should have been initialized with
314 :param handle: UDP handle. Should have been initialized with
327 :param handle: UDP handle. Should have been initialized with
340 :param handle: UDP handle. Should have been initialized with
353 :param handle: UDP handle. Should have been initialized with
366 :param handle: UDP handle. Should have been initialized with
377 Send data over the UDP socket. If the socket has not previously been bound
385 For connected UDP handles, `addr` must be set to `NULL`, otherwise it will
388 For connectionless UDP handles, `addr` cannot be `NULL`, otherwise it will
391 :param req: UDP request handle. Need not be initialized.
393 :param handle: UDP handle. Should have been initialized with
417 For connected UDP handles, `addr` must be set to `NULL`, otherwise it will
420 For connectionless UDP handles, `addr` cannot be `NULL`, otherwise it will
435 :param handle: UDP handle. Should have been initialized with
461 Returns 1 if the UDP handle was created with the `UV_UDP_RECVMMSG` flag
470 :param handle: UDP handle. Should have been initialized with