Searched refs:interfaces (Results 1 – 7 of 7) sorted by relevance
/libuv/test/ |
H A D | test-platform-output.c | 36 uv_interface_address_t* interfaces; in TEST_IMPL() local 154 err = uv_interface_addresses(&interfaces, &count); in TEST_IMPL() 159 printf(" name: %s\n", interfaces[i].name); in TEST_IMPL() 160 printf(" internal: %d\n", interfaces[i].is_internal); in TEST_IMPL() 163 (unsigned char)interfaces[i].phys_addr[0], in TEST_IMPL() 164 (unsigned char)interfaces[i].phys_addr[1], in TEST_IMPL() 165 (unsigned char)interfaces[i].phys_addr[2], in TEST_IMPL() 166 (unsigned char)interfaces[i].phys_addr[3], in TEST_IMPL() 167 (unsigned char)interfaces[i].phys_addr[4], in TEST_IMPL() 168 (unsigned char)interfaces[i].phys_addr[5]); in TEST_IMPL() [all …]
|
/libuv/docs/src/guide/ |
H A D | networking.rst | 120 The IP address ``0.0.0.0`` is used to bind to all interfaces. The IP 122 will be sent to all interfaces on the subnet. port ``0`` means that the OS 125 First we setup the receiving socket to bind on all interfaces on port 68 (DHCP 226 Network interfaces 229 Information about the system's network interfaces can be obtained through libuv 234 .. rubric:: interfaces/main.c 235 .. literalinclude:: ../../code/interfaces/main.c 240 ``is_internal`` is true for loopback interfaces. Note that if a physical
|
/libuv/src/unix/ |
H A D | tcp.c | 234 uv_interface_address_t* interfaces; in uv__ipv6_link_local_scope_id() local 238 if (uv_interface_addresses(&interfaces, &count)) in uv__ipv6_link_local_scope_id() 243 for (ifa = interfaces; ifa != &interfaces[count]; ifa++) { in uv__ipv6_link_local_scope_id() 250 uv_free_interface_addresses(interfaces, count); in uv__ipv6_link_local_scope_id()
|
/libuv/docs/code/ |
H A D | CMakeLists.txt | 17 interfaces
|
/libuv/docs/src/ |
H A D | udp.rst | 379 (the "all interfaces" IPv4 address) and a random port number. 432 with :c:func:`uv_udp_bind` it is bound to 0.0.0.0 (the "all interfaces"
|
H A D | misc.rst | 412 Gets address information about the network interfaces on the system. An
|
/libuv/ |
H A D | ChangeLog | 3155 * aix: add netmask, mac address into net interfaces (Gireesh Punathil) 3244 * sunos: filter out non-IPv4/IPv6 interfaces (Sebastian Wiedenroth) 3897 * test: assume no IPv6 if interfaces cannot be listed (Nan Xiang) 4737 * linux: return early if we have no interfaces (Maciej Małecki)
|
Completed in 25 milliseconds