Searched refs:portset (Results 1 - 6 of 6) sorted by relevance

/bind-9.6-ESV-R11/lib/isc/
H A Dportset.c17 /* $Id: portset.c,v 1.4 2008/06/24 23:24:35 marka Exp $ */
24 #include <isc/portset.h>
32 * Internal representation of portset. It's an array of 32-bit integers, each
42 portset_isset(isc_portset_t *portset, in_port_t port) { argument
43 return (ISC_TF((portset->buf[port >> 5] & (1 << (port & 31))) != 0));
47 portset_add(isc_portset_t *portset, in_port_t port) { argument
48 if (!portset_isset(portset, port)) {
49 portset->nports++;
50 portset->buf[port >> 5] |= (1 << (port & 31));
55 portset_remove(isc_portset_t *portset, in_port_ argument
64 isc_portset_t *portset; local
81 isc_portset_t *portset; local
90 isc_portset_isset(isc_portset_t *portset, in_port_t port) argument
97 isc_portset_nports(isc_portset_t *portset) argument
104 isc_portset_add(isc_portset_t *portset, in_port_t port) argument
111 isc_portset_remove(isc_portset_t *portset, in_port_t port) argument
116 isc_portset_addrange(isc_portset_t *portset, in_port_t port_lo, in_port_t port_hi) argument
131 isc_portset_removerange(isc_portset_t *portset, in_port_t port_lo, in_port_t port_hi) argument
[all...]
/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dportset.h19 /*! \file isc/portset.h
72 isc_portset_isset(isc_portset_t *portset, in_port_t port);
74 * Test whether the given port is stored in the portset.
77 *\li 'portset' to be a valid set.
84 isc_portset_nports(isc_portset_t *portset);
86 * Provides the number of ports stored in the given portset.
89 *\li 'portset' to be a valid set.
92 * \li the number of ports stored in portset.
96 isc_portset_add(isc_portset_t *portset, in_port_t port);
98 * Add the given port to the portset
[all...]
/bind-9.6-ESV-R11/lib/isc/win32/
H A Dlibisc.mak162 -@erase "$(INTDIR)\portset.obj"
286 "$(INTDIR)\portset.obj" \
399 -@erase "$(INTDIR)\portset.obj"
400 -@erase "$(INTDIR)\portset.sbr"
552 "$(INTDIR)\portset.sbr" \
639 "$(INTDIR)\portset.obj" \
1650 SOURCE=..\portset.c
1655 "$(INTDIR)\portset.obj" : $(SOURCE) "$(INTDIR)"
1662 "$(INTDIR)\portset.obj" "$(INTDIR)\portset
[all...]
/bind-9.6-ESV-R11/contrib/queryperf/
H A Dqueryperf.c171 int serverset = FALSE, portset = FALSE; variable
611 portset = TRUE;
1272 if (portset && (setup_phase == TRUE)) {
/bind-9.6-ESV-R11/bin/named/
H A Dserver.c36 #include <isc/portset.h>
3196 portset_fromconf(isc_portset_t *portset, const cfg_obj_t *ports, argument
3210 isc_portset_add(portset, port);
3212 isc_portset_remove(portset, port);
3223 isc_portset_addrange(portset, loport, hiport);
3225 isc_portset_removerange(portset, loport,
/bind-9.6-ESV-R11/lib/dns/
H A Ddispatch.c32 #include <isc/portset.h>

Completed in 51 milliseconds