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

/bind-9.6-ESV-R11/lib/isc/unix/
H A Dnet.c404 int port_low, port_high; local
416 if (sysctlbyname(sysctlname_lowport, &port_low, &portlen,
425 if ((port_low & ~0xffff) != 0 || (port_high & ~0xffff) != 0)
428 *low = (in_port_t)port_low;
441 int port_low, port_high; local
455 if (sysctl(mib_lo, miblen, &port_low, &portlen, NULL, 0) < 0) {
464 if ((port_low & ~0xffff) != 0 || (port_high & ~0xffff) != 0)
467 *low = (in_port_t) port_low;

Completed in 272 milliseconds