/third_party/libuv/test/ |
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()
|
D | test-udp-create-socket-early.c | 58 r = uv_udp_bind(&client, (const struct sockaddr*) &addr, 0); in TEST_IMPL() 106 r = uv_udp_bind(&client, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
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()
|
D | test-socket-buffer-size.c | 67 ASSERT(0 == uv_udp_bind(&udp, (struct sockaddr*) &addr, 0)); in TEST_IMPL()
|
D | test-udp-multicast-ttl.c | 66 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
D | test-udp-multicast-interface6.c | 77 r = uv_udp_bind(&server, (const struct sockaddr*)&baddr, 0); in TEST_IMPL()
|
D | test-udp-multicast-interface.c | 74 r = uv_udp_bind(&server, (const struct sockaddr*)&baddr, 0); in TEST_IMPL()
|
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()
|
D | test-watcher-cross-stop.c | 85 ASSERT(0 == uv_udp_bind(&sockets[i], in TEST_IMPL()
|
D | test-udp-try-send.c | 92 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
D | test-udp-send-immediate.c | 108 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
D | test-udp-mmsg.c | 118 ASSERT_EQ(0, uv_udp_bind(&recver, (const struct sockaddr*) &addr, 0)); in TEST_IMPL()
|
D | test-udp-options.c | 43 r = uv_udp_bind(&h, addr, 0); in udp_options_test()
|
D | benchmark-ping-udp.c | 129 r = uv_udp_bind(&pinger->udp, (const struct sockaddr*) &pinger->server_addr, 0); in udp_pinger_new()
|
D | test-udp-multicast-join.c | 153 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
D | test-handle-fileno.c | 83 r = uv_udp_bind(&udp, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
D | test-udp-alloc-cb-fail.c | 160 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
D | test-udp-send-and-recv.c | 171 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
D | test-udp-multicast-join6.c | 185 r = uv_udp_bind(&server, (const struct sockaddr*) &addr, 0); in TEST_IMPL()
|
D | test-udp-connect.c | 116 r = uv_udp_bind(&server, (const struct sockaddr*) &lo_addr, 0); in TEST_IMPL()
|
D | test-udp-connect6.c | 119 r = uv_udp_bind(&server, (const struct sockaddr*) &lo_addr, 0); in TEST_IMPL()
|
D | benchmark-udp-pummel.c | 177 ASSERT(0 == uv_udp_bind(&s->udp_handle, (const struct sockaddr*) &addr, 0)); in pummel()
|
D | test-udp-ipv6.c | 159 r = uv_udp_bind(&server, (const struct sockaddr*) &addr6, bind_flags); in do_test()
|
/third_party/libuv/docs/code/udp-dhcp/ |
D | main.c | 110 uv_udp_bind(&recv_socket, (const struct sockaddr *)&recv_addr, UV_UDP_REUSEADDR); in main() 116 uv_udp_bind(&send_socket, (const struct sockaddr *)&broadcast_addr, 0); in main()
|
/third_party/libuv/docs/src/ |
D | udp.rst | 23 Flags used in :c:func:`uv_udp_bind` and :c:type:`uv_udp_recv_cb`.. 37 * uv_udp_bind. 178 .. c:function:: int uv_udp_bind(uv_udp_t* handle, const struct sockaddr* addr, unsigned int flags) 341 with :c:func:`uv_udp_bind` it will be bound to 0.0.0.0 395 with :c:func:`uv_udp_bind` it is bound to 0.0.0.0 (the "all interfaces"
|