/libuv/test/ |
H A D | test-udp-bind.c | 46 r = uv_udp_bind(&h1, (const struct sockaddr*) &addr, 0); in TEST_IMPL() 49 r = uv_udp_bind(&h2, (const struct sockaddr*) &addr, 0); in TEST_IMPL() 79 r = uv_udp_bind(&h1, (const struct sockaddr*) &addr, UV_UDP_REUSEADDR); in TEST_IMPL() 82 r = uv_udp_bind(&h2, (const struct sockaddr*) &addr, UV_UDP_REUSEADDR); in TEST_IMPL()
|
H A D | test-udp-reuseport.c | 48 r = uv_udp_bind(&handle1, (const struct sockaddr*) &addr1, UV_UDP_REUSEADDR); in TEST_IMPL() 54 r = uv_udp_bind(&handle2, (const struct sockaddr*) &addr2, UV_UDP_REUSEPORT); in TEST_IMPL() 63 r = uv_udp_bind(&handle3, (const struct sockaddr*) &addr3, in TEST_IMPL() 177 r = uv_udp_bind(handle, (const struct sockaddr*) &addr, in bind_socket_and_prepare_recv()
|
H A D | test-udp-create-socket-early.c | 60 r = uv_udp_bind(&client, (const struct sockaddr*) &addr, 0); in TEST_IMPL() 110 r = uv_udp_bind(&client, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
H A D | test-udp-send-unreachable.c | 131 r = uv_udp_bind(&client, (const struct sockaddr*) &addr2, 0); in TEST_IMPL() 162 r = uv_udp_bind(&client2, in TEST_IMPL()
|
H A D | test-socket-buffer-size.c | 67 ASSERT_OK(uv_udp_bind(&udp, (struct sockaddr*) &addr, 0)); in TEST_IMPL()
|
H A D | test-udp-multicast-ttl.c | 66 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
H A D | test-udp-multicast-interface.c | 74 r = uv_udp_bind(&server, (const struct sockaddr*)&baddr, 0); in TEST_IMPL()
|
H A D | test-udp-multicast-interface6.c | 77 r = uv_udp_bind(&server, (const struct sockaddr*)&baddr, 0); in TEST_IMPL()
|
H A D | test-watcher-cross-stop.c | 85 ASSERT_OK(uv_udp_bind(&sockets[i], in TEST_IMPL()
|
H A D | test-udp-recv-in-a-row.c | 95 ASSERT_OK(uv_udp_bind(&server, (const struct sockaddr*) &addr, 0)); in TEST_IMPL()
|
H A D | test-udp-open.c | 156 r = uv_udp_bind(&client, (const struct sockaddr*) &addr, 0); in TEST_IMPL() 277 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
H A D | test-udp-try-send.c | 92 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
H A D | test-udp-send-immediate.c | 108 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
H A D | test-udp-mmsg.c | 118 ASSERT_OK(uv_udp_bind(&recver, (const struct sockaddr*) &addr, 0)); in TEST_IMPL()
|
H A D | benchmark-ping-udp.c | 129 r = uv_udp_bind(&pinger->udp, (const struct sockaddr*) &pinger->server_addr, 0); in udp_pinger_new()
|
H A D | test-udp-options.c | 43 r = uv_udp_bind(&h, addr, 0); in udp_options_test()
|
H A D | test-udp-alloc-cb-fail.c | 160 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
H A D | test-handle-fileno.c | 83 r = uv_udp_bind(&udp, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
H A D | test-udp-multicast-join.c | 162 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
H A D | test-udp-send-and-recv.c | 171 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
H A D | test-udp-multicast-join6.c | 184 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
H A D | test-udp-connect.c | 115 r = uv_udp_bind(&server, (const struct sockaddr*) &lo_addr, 0); in TEST_IMPL()
|
H A D | benchmark-udp-pummel.c | 177 ASSERT_OK(uv_udp_bind(&s->udp_handle, (const struct sockaddr*) &addr, 0)); in pummel()
|
/libuv/docs/code/udp-dhcp/ |
H A D | main.c | 111 uv_udp_bind(&recv_socket, (const struct sockaddr *)&recv_addr, UV_UDP_REUSEADDR); in main() 117 uv_udp_bind(&send_socket, (const struct sockaddr *)&broadcast_addr, 0); in main()
|
/libuv/docs/src/ |
H A D | udp.rst | 23 Flags used in :c:func:`uv_udp_bind` and :c:type:`uv_udp_recv_cb`.. 192 .. c:function:: int uv_udp_bind(uv_udp_t* handle, const struct sockaddr* addr, unsigned int flags) 316 been bound to an address explicitly with :c:func:`uv_udp_bind`, or 329 been bound to an address explicitly with :c:func:`uv_udp_bind`, or 342 been bound to an address explicitly with :c:func:`uv_udp_bind`, or 355 been bound to an address explicitly with :c:func:`uv_udp_bind`, or 368 been bound to an address explicitly with :c:func:`uv_udp_bind`, or 378 with :c:func:`uv_udp_bind` it will be bound to 0.0.0.0 432 with :c:func:`uv_udp_bind` it is bound to 0.0.0.0 (the "all interfaces"
|