| /src/external/mpl/bind/dist/lib/isc/netmgr/ |
| socket.c | 388 in_port_t port_low ISC_ATTR_UNUSED, 423 if (port_high - port_low <= PORT_RANGE) { 428 * port_low <= N < port_high - PORT_RANGE 431 port_low += isc_random_uniform(port_high - port_low); 432 port_high = port_low + PORT_RANGE; 434 INSIST(port_low > 0); 435 INSIST(port_low < port_high); 437 port_range = (uint32_t)port_low | ((uint32_t)port_high << 16);
|
| tcp.c | 231 in_port_t port_low, port_high; local 268 port_low = (sa_family == AF_INET) ? mgr->port_low4 : mgr->port_low6; 270 result = isc__nm_socket_max_port_range(sock->fd, sa_family, port_low,
|
| netmgr.c | 160 in_port_t port_low, port_high; local 252 isc_net_getportrange(AF_INET, &port_low, &port_high); 253 isc_netmgr_portrange(netmgr, AF_INET, port_low, port_high); 255 isc_net_getportrange(AF_INET6, &port_low, &port_high); 256 isc_netmgr_portrange(netmgr, AF_INET6, port_low, port_high);
|
| netmgr-int.h | 1386 in_port_t port_low, in_port_t port_high);
|
| /src/external/mpl/bind/dist/lib/isc/ |
| net.c | 339 int port_low, port_high; local 350 portlen = sizeof(port_low); 351 if (sysctlbyname(sysctlname_lowport, &port_low, &portlen, NULL, 0) < 0) 360 if ((port_low & ~0xffff) != 0 || (port_high & ~0xffff) != 0) { 364 *low = (in_port_t)port_low; 377 int port_low, port_high; local 390 portlen = sizeof(port_low); 391 if (sysctl(mib_lo, miblen, &port_low, &portlen, NULL, 0) < 0) { 400 if ((port_low & ~0xffff) != 0 || (port_high & ~0xffff) != 0) { 404 *low = (in_port_t)port_low; [all...] |
| /src/external/bsd/ntp/dist/libntp/lib/isc/unix/ |
| net.c | 408 int port_low, port_high; local 420 if (sysctlbyname(sysctlname_lowport, &port_low, &portlen, 429 if ((port_low & ~0xffff) != 0 || (port_high & ~0xffff) != 0) 432 *low = (in_port_t)port_low; 445 int port_low, port_high; local 459 if (sysctl(mib_lo, miblen, &port_low, &portlen, NULL, 0) < 0) { 468 if ((port_low & ~0xffff) != 0 || (port_high & ~0xffff) != 0) 471 *low = (in_port_t) port_low;
|
| /src/external/mpl/dhcp/bind/dist/lib/isc/unix/ |
| net.c | 716 int port_low, port_high; local 727 portlen = sizeof(port_low); 728 if (sysctlbyname(sysctlname_lowport, &port_low, &portlen, NULL, 0) < 0) 737 if ((port_low & ~0xffff) != 0 || (port_high & ~0xffff) != 0) { 741 *low = (in_port_t)port_low; 754 int port_low, port_high; local 767 portlen = sizeof(port_low); 768 if (sysctl(mib_lo, miblen, &port_low, &portlen, NULL, 0) < 0) { 777 if ((port_low & ~0xffff) != 0 || (port_high & ~0xffff) != 0) { 781 *low = (in_port_t)port_low; [all...] |
| /src/external/mpl/bind/dist/bin/named/ |
| server.c | 8410 in_port_t listen_port, port_low, port_high; local 8840 isc_net_getportrange(AF_INET, &port_low, &port_high); 8841 if (port_low == port_high) { 8842 isc_portset_add(v4portset, port_low); 8844 isc_portset_addrange(v4portset, port_low, port_high); 8851 port_low, port_high); 8863 isc_net_getportrange(AF_INET6, &port_low, &port_high); 8864 if (port_low == port_high) { 8865 isc_portset_add(v6portset, port_low); 8867 isc_portset_addrange(v6portset, port_low, port_high) [all...] |