Searched defs:port_low (Results 1 - 1 of 1) sorted by relevance

/bind-9.11.3/lib/isc/unix/
H A Dnet.c770 int port_low, port_high; local
781 portlen = sizeof(port_low);
782 if (sysctlbyname(sysctlname_lowport, &port_low, &portlen,
791 if ((port_low & ~0xffff) != 0 || (port_high & ~0xffff) != 0)
794 *low = (in_port_t)port_low;
807 int port_low, port_high; local
820 portlen = sizeof(port_low);
821 if (sysctl(mib_lo, miblen, &port_low, &portlen, NULL, 0) < 0) {
830 if ((port_low & ~0xffff) != 0 || (port_high & ~0xffff) != 0)
833 *low = (in_port_t) port_low;
[all...]

Completed in 17 milliseconds