Searched refs:port (Results 1 - 25 of 215) sorted by relevance

123456789

/bind-9.6-ESV-R11/bin/tests/system/
H A Dtestsock.pl27 my $port = 0;
29 GetOptions("p=i" => \$port,
41 my $sa = pack_sockaddr_in($port, $addr);
48 inet_ntoa($addr), $port);
H A Dsend.pl21 # Send a file to a given address and port using TCP. Used for
28 @ARGV == 2 or die "usage: send.pl host port [file ...]\n";
31 my $port = shift @ARGV;
33 my $sock = IO::Socket::INET->new(PeerAddr => $host, PeerPort => $port,
H A Dpacket.pl20 # arbitrary address and port. The packet is specified in a file or on
41 # Usage: packet.pl [-a <address>] [-p <port>] [-t (udp|tcp)] [filename]
43 # If not specified, address defaults to 127.0.0.1, port to 53, protocol
56 print ("Usage: packet.pl [-a address] [-p port] [-t (tcp|udp)] [file]\n");
66 my $port = 53;
67 $port = $options{p} if defined $options{p};
94 my $sock = IO::Socket::INET->new(PeerAddr => $addr, PeerPort => $port,
105 print ("sent $bytes bytes to $addr:$port\n");
/bind-9.6-ESV-R11/lib/isc/
H A Dportset.c33 * bit corresponding to a single port in the ascending order. For example,
34 * the second most significant bit of buf[0] corresponds to port 1.
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)) {
50 portset->buf[port >> 5] |= (1 << (port & 31));
55 portset_remove(isc_portset_t *portset, in_port_t port) { argument
90 isc_portset_isset(isc_portset_t *portset, in_port_t port) 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
[all...]
/bind-9.6-ESV-R11/contrib/zkt/examples/views/
H A Dnamed.conf29 listen-on-v6 port 1053 { any; };
30 listen-on port 1053 { any; };
34 port 1053;
35 query-source address * port 1053;
36 query-source-v6 address * port 1053;
37 transfer-source * port 53;
38 transfer-source-v6 * port 53;
40 notify-source * port 53;
41 notify-source-v6 * port 53;
57 stats-server 127.0.0.1 port 888
[all...]
/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dportset.h23 * (UDP or TCP) port numbers, e.g., for creating an ACL list. An isc_portset_t
24 * object is an opaque instance of a port set, for which the user can add or
25 * remove a specific port or a range of consecutive ports. This object is
49 * Create a port set and initialize it as an empty set.
63 * Destroy a port set.
66 *\li 'mctx' to be valid and must be the same context given when the port set
72 isc_portset_isset(isc_portset_t *portset, in_port_t port);
74 * Test whether the given port is stored in the portset.
80 * \li #ISC_TRUE if the port is found, ISC_FALSE otherwise.
96 isc_portset_add(isc_portset_t *portset, in_port_t port);
[all...]
H A Dsockaddr.h50 #define ISC_SOCKADDR_CMPPORT 0x0002 /*%< compare the port
95 * is ISC_TRUE, the hash value will not depend on the port.
125 in_port_t port);
127 * Construct an isc_sockaddr_t from an IPv4 address and port.
132 in_port_t port);
134 * Construct an isc_sockaddr_t from an IPv6 address and port.
139 in_port_t port);
146 in_port_t port);
148 * Construct an isc_sockaddr_t from an isc_netaddr_t and port.
167 isc_sockaddr_setport(isc_sockaddr_t *sockaddr, in_port_t port);
[all...]
/bind-9.6-ESV-R11/lib/dns/rdata/in_1/
H A Dsrv_33.h33 isc_uint16_t port; member in struct:dns_rdata_in_srv
/bind-9.6-ESV-R11/bin/tests/system/logfileconfig/ns1/
H A Dnamed.dirconf23 port 5300;
25 listen-on port 5300 {
43 inet 127.0.0.1 port 9593 allow {
H A Dnamed.pipeconf23 port 5300;
25 listen-on port 5300 {
43 inet 127.0.0.1 port 9593 allow {
H A Dnamed.plain23 port 5300;
25 listen-on port 5300 {
43 inet 127.0.0.1 port 9593 allow {
H A Dnamed.symconf23 port 5300;
25 listen-on port 5300 {
43 inet 127.0.0.1 port 9593 allow {
/bind-9.6-ESV-R11/lib/dns/include/dns/
H A Dportlist.h33 * Create a port list.
46 dns_portlist_add(dns_portlist_t *portlist, int af, in_port_t port);
48 * Add the given <port,af> tuple to the portlist.
60 dns_portlist_remove(dns_portlist_t *portlist, int af, in_port_t port);
62 * Remove the given <port,af> tuple to the portlist.
70 dns_portlist_match(dns_portlist_t *portlist, int af, in_port_t port);
72 * Find the given <port,af> tuple to the portlist.
85 * Attach to a port list.
95 * Detach from a port list.
/bind-9.6-ESV-R11/bin/named/include/named/
H A Dlistenlist.h48 in_port_t port; member in struct:ns_listenelt
64 ns_listenelt_create(isc_mem_t *mctx, in_port_t port,
95 ns_listenlist_default(isc_mem_t *mctx, in_port_t port,
99 * all addresses with port 'port' (if 'enabled' is ISC_TRUE),
/bind-9.6-ESV-R11/bin/tests/system/formerr/
H A Dformerr.pl20 # arbitrary address and port. The packet is specified in a file or on
41 # Usage: packet.pl [-a <address>] [-p <port>] [-t (udp|tcp)] [filename]
43 # If not specified, address defaults to 127.0.0.1, port to 53, protocol
56 print ("Usage: packet.pl [-a address] [-p port] [file]\n");
66 my $port = 53;
67 $port = $options{p} if defined $options{p};
90 my $sock = IO::Socket::INET->new(PeerAddr => $addr, PeerPort => $port,
/bind-9.6-ESV-R11/lib/dns/
H A Dportlist.c43 in_port_t port; member in struct:dns_element
66 if (e1->port < e2->port)
68 if (e1->port > e2->port)
105 find_port(dns_element_t *list, unsigned int len, in_port_t port) { argument
112 if (list[xtry].port == port)
114 if (port > list[xtry].port) {
138 dns_portlist_add(dns_portlist_t *portlist, int af, in_port_t port) argument
189 dns_portlist_remove(dns_portlist_t *portlist, int af, in_port_t port) argument
215 dns_portlist_match(dns_portlist_t *portlist, int af, in_port_t port) argument
[all...]
/bind-9.6-ESV-R11/bin/tests/startperf/
H A Dsetup.sh31 port 5300;
44 inet 127.0.0.1 port 9953 allow { any; } keys { rndc_key; };
/bind-9.6-ESV-R11/bin/tests/system/database/ns1/
H A Dnamed.conf127 inet 10.53.0.1 port 9953 allow { any; } keys { rndc_key; };
34 port 5300;
H A Dnamed.conf227 inet 10.53.0.1 port 9953 allow { any; } keys { rndc_key; };
34 port 5300;
/bind-9.6-ESV-R11/bin/tests/system/ixfr/
H A Dsetup.sh27 port 5300;
41 inet 10.53.0.1 port 9953 allow { any; } keys { rndc_key; };
/bind-9.6-ESV-R11/bin/tests/system/tkey/ns1/
H A Dnamed.conf.in26 port 5300;
43 inet 10.53.0.1 port 9953 allow { any; } keys { rndc_key; };
/bind-9.6-ESV-R11/bin/tests/system/xfer/ns4/
H A Dnamed.conf.base23 port 5300;
42 inet 10.53.0.4 port 9953 allow { any; } keys { rndc_key; };
/bind-9.6-ESV-R11/lib/bind9/include/bind9/
H A Dgetaddresses.h33 bind9_getaddresses(const char *hostname, in_port_t port,
/bind-9.6-ESV-R11/contrib/zkt/examples/flat/
H A Dnamed.conf51 query-source address * port 53;
52 transfer-source * port 53;
53 notify-source * port 53;
/bind-9.6-ESV-R11/contrib/zkt/examples/hierarchical/
H A Dnamed.conf51 query-source address * port 53;
52 transfer-source * port 53;
53 notify-source * port 53;

Completed in 3086 milliseconds

123456789