Lines Matching refs:ports
99 * available ports, i.e., an ordered array of the actual port numbers.
110 in_port_t *v4ports; /*%< available ports for IPv4 */
111 unsigned int nv4ports; /*%< # of available ports for IPv4 */
112 in_port_t *v6ports; /*%< available ports for IPv4 */
113 unsigned int nv6ports; /*%< # of available ports for IPv4 */
241 dispportlist_t *port_table; /*%< hold ports 'owned' by us */
671 in_port_t *ports;
678 ports = disp->mgr->v4ports;
681 ports = disp->mgr->v6ports;
711 * choosing ports that share the same destination because it will be
718 port = ports[isc_rng_uniformrandom(DISP_RNGCTX(disp), nports)];
1218 * Check that the socket types and ports match.
1726 * ports: [1024, 65535]. This is almost meaningless as the application will
1727 * normally set the ports explicitly, but is provided to fill some minor corner
2155 in_port_t *ports, port;
2170 ports = mgr->v4ports;
2173 ports = mgr->v6ports;
2176 if (ports == NULL)
2180 if (bsearch(&port, ports, nports, sizeof(in_port_t), port_cmp) != NULL)
2201 * Don't match wildcard ports unless the port is available in the
2212 * Wildcard ports match/fail here.
2873 in_port_t *ports;
2881 ports = disp->mgr->v4ports;
2884 ports = disp->mgr->v6ports;
2892 prt = ports[isc_rng_uniformrandom(DISP_RNGCTX(disp),
2914 /* Allow to reuse address for non-random ports. */
2943 "avoid-v%s-udp-ports: unable to allocate "