Searched refs:addr (Results 1 - 25 of 146) sorted by relevance

123456

/bind-9.11.3/bin/tests/system/
H A Dtestsock6.pl15 foreach $addr (@ARGV) {
17 $sock = IO::Socket::INET6->new(LocalAddr => $addr,
H A Dtestsock.pl31 my $addr = pack("C4", 10, 53, 0, $id);
32 my $sa = pack_sockaddr_in($port, $addr);
39 inet_ntoa($addr), $port);
H A Dditch.pl39 my $addr = "127.0.0.1";
40 $addr = $options{s} if defined $options{s};
72 my $sock = IO::Socket::INET->new(PeerAddr => $addr, PeerPort => $port,
76 #print ("sent $bytes bytes to $addr:$port:\n");
H A Dpacket.pl55 my $addr = "127.0.0.1";
56 $addr = $options{a} if defined $options{a};
86 my $sock = IO::Socket::INET->new(PeerAddr => $addr, PeerPort => $port,
97 print ("sent $bytes bytes to $addr:$port\n");
/bind-9.11.3/bin/tests/net/
H A Dnetaddr_multicast.c29 const char *addr; member in struct:__anon39
46 to_netaddr(t_addr_t *addr, isc_netaddr_t *na) { argument
51 switch (addr->family) {
53 r = inet_pton(AF_INET, addr->addr, (unsigned char *)&in);
59 r = inet_pton(AF_INET6, addr->addr, (unsigned char *)&in6);
75 t_addr_t *addr; local
82 addr = &addrs[i];
83 result = to_netaddr(addr,
[all...]
/bind-9.11.3/bin/tests/virtual-time/
H A Dtestsock.pl31 my $addr = pack("C4", 10, 53, 0, $id);
32 my $sa = pack_sockaddr_in($port, $addr);
39 inet_ntoa($addr), $port);
/bind-9.11.3/lib/isc/include/isc/
H A Dnetscope.h30 isc_netscope_pton(int af, char *scopename, void *addr, isc_uint32_t *zoneid);
H A Dbacktrace.h45 void *addr; member in struct:isc_backtrace_symmap
102 isc_backtrace_getsymbol(const void *addr, const char **symbolp,
106 * given 'addr'. On success, '*symbolp' will point to the name of function
107 * to which the address 'addr' belong, and '*offsetp' will store the offset
108 * from the function's entry address to 'addr'.
/bind-9.11.3/bin/tests/bigtest/
H A Dbuildzones.sh12 addr=127.127.0.0
58 echo ' pid-file "pids/'"${addr}"'.pid";'
72 echo ' pid-file "pids/'"${addr}"'.pid";'
86 echo ' pid-file "pids/'"${addr}"'.pid";'
92 echo "controls { inet $addr port 9953 allow { any; } keys { "rndc-key"; }; };"
157 echo "ifconfig lo0 $addr netmask 0xffffffff alias" >> setup
158 echo "ifconfig lo0 $addr -alias" >> teardown
159 controls $addr > named.conf
160 options $addr yes >> named.conf
179 addr
[all...]
/bind-9.11.3/contrib/dnsperf-2.1.0.0-1/
H A Dnet.h43 isc_sockaddr_t *addr);
47 isc_sockaddr_t *addr);
H A Dnet.c70 isc_sockaddr_t *addr)
89 *addr = addrs[i];
102 isc_sockaddr_t *addr)
108 isc_sockaddr_anyofpf(addr, family);
109 isc_sockaddr_setport(addr, port);
111 isc_sockaddr_fromin(addr, &in4a, port);
113 isc_sockaddr_fromin6(addr, &in6a, port);
69 perf_net_parseserver(int family, const char *name, unsigned int port, isc_sockaddr_t *addr) argument
101 perf_net_parselocal(int family, const char *name, unsigned int port, isc_sockaddr_t *addr) argument
/bind-9.11.3/lib/isc/tests/
H A Dsockaddr_test.c34 isc_sockaddr_t addr; local
46 isc_sockaddr_fromin(&addr, &in, 1);
47 h1 = isc_sockaddr_hash(&addr, ISC_TRUE);
48 h2 = isc_sockaddr_hash(&addr, ISC_FALSE);
53 isc_sockaddr_fromin6(&addr, &in6, 1);
54 h3 = isc_sockaddr_hash(&addr, ISC_TRUE);
55 h4 = isc_sockaddr_hash(&addr, ISC_FALSE);
67 isc_sockaddr_t addr; local
106 isc_sockaddr_fromin(&addr, &in, 1);
107 r = isc_sockaddr_isnetzero(&addr);
[all...]
/bind-9.11.3/lib/lwres/
H A Dcontext_p.h22 #define CTXFREE(addr, len) ctx->free(ctx->arg, (addr), (len))
H A Dlwres_gabn.c187 lwres_addr_t *addr; local
204 addr = LWRES_LIST_HEAD(req->addrs);
205 while (addr != NULL) {
207 payload_length += addr->length;
208 addr = LWRES_LIST_NEXT(addr, link);
261 addr = LWRES_LIST_HEAD(req->addrs);
262 while (addr != NULL) {
263 lwres_buffer_putuint32(b, addr->family);
264 lwres_buffer_putuint16(b, addr
336 lwres_addr_t *addr; local
474 lwres_addr_t *addr; local
[all...]
/bind-9.11.3/bin/named/include/named/
H A Dsortlist.h52 ns_sortlist_addrorder1(const isc_netaddr_t *addr, const void *arg);
54 * Find the sort order of 'addr' in 'arg', the matching element
59 ns_sortlist_addrorder2(const isc_netaddr_t *addr, const void *arg);
61 * Find the sort order of 'addr' in 'arg', a topology-like
/bind-9.11.3/bin/tests/system/statschannel/
H A Dfetch.pl25 my $addr = "10.53.0.2";
26 $addr = $options{a} if defined $options{a};
36 my $ff = File::Fetch->new(uri => "http://$addr:$port/$path");
/bind-9.11.3/util/
H A Dmksymtbl.pl53 my ($addr, $symbol) = (0, "");
57 $addr = $1;
63 $addr = $2;
73 ($addr, $symbol) = ($1, $2);
83 next if ($symmap{$addr});
85 $symmap{$addr} = $symbol;
109 my ($addr, $symbol) = ($_, $symmap{$_});
113 print TBLFILE "\t{ (void *)0x$addr, \"$symbol\" },\n";
/bind-9.11.3/lib/isc/
H A Dbacktrace.c225 *addrp = isc__backtrace_symtable[idx].addr;
231 symtbl_compare(const void *addr, const void *entryarg) { argument
237 if (addr >= entry->addr) {
239 * If addr is equal to or larger than that of the last
249 if (addr < entry->addr)
251 else if (addr >= (entry + 1)->addr)
257 isc_backtrace_getsymbol(const void *addr, cons argument
[all...]
/bind-9.11.3/bin/tests/system/formerr/
H A Dformerr.pl55 my $addr = "127.0.0.1";
56 $addr = $options{a} if defined $options{a};
82 my $sock = IO::Socket::INET->new(PeerAddr => $addr, PeerPort => $port,
/bind-9.11.3/contrib/idn/idnkit-1.0-src/wsock/wsock11/
H A Ddlldef.h76 _org_gethostbyaddr(const char FAR * addr, int len, int type);
82 _org_WSAAsyncGetHostByAddr(HWND hWnd, u_int wMsg, const char FAR * addr,
/bind-9.11.3/lib/dns/tests/
H A Dacl_test.c76 isc_netaddr_t addr; local
137 isc_netaddr_fromin(&addr, &inaddr);
138 result = dns_iptable_addprefix2(pos4pos6->iptable, &addr, 8,
142 addr.family = AF_INET6; /* 0a00:: */
143 result = dns_iptable_addprefix2(pos4pos6->iptable, &addr, 8,
151 isc_netaddr_fromin(&addr, &inaddr);
152 result = dns_iptable_addprefix2(neg4pos6->iptable, &addr, 8,
156 addr.family = AF_INET6; /* 0a00::/8 */
157 result = dns_iptable_addprefix2(neg4pos6->iptable, &addr, 8,
165 isc_netaddr_fromin(&addr,
[all...]
/bind-9.11.3/lib/dns/include/dns/
H A Dadb.h496 dns_adb_marklame(dns_adb_t *adb, dns_adbaddrinfo_t *addr, dns_name_t *qname,
507 *\li addr be valid.
530 dns_adb_adjustsrtt(dns_adb_t *adb, dns_adbaddrinfo_t *addr,
539 *\li addr be valid.
545 *\li The srtt in addr will be updated to reflect the new global
550 dns_adb_agesrtt(dns_adb_t *adb, dns_adbaddrinfo_t *addr, isc_stdtime_t now);
559 *\li addr be valid.
563 *\li The srtt in addr will be updated to reflect the new global
568 dns_adb_changeflags(dns_adb_t *adb, dns_adbaddrinfo_t *addr,
581 *\li addr b
[all...]
/bind-9.11.3/bin/tests/
H A Dgxba_test.c59 void *addr; local
68 addr = &in_addr;
72 addr = &in6_addr;
80 he = gethostbyaddr(addr, len, af);
83 he = getipnodebyaddr(addr, len, af, &error);
/bind-9.11.3/bin/tests/system/rpz/
H A Dtests.sh254 addr () { function
321 addr 12.12.12.12 a4-1.sub1.tld2 # 9 A replacement
322 addr 12.12.12.12 a4-1.sub2.tld2 # 10 A replacement with wildcard
323 addr 12.12.12.12 nxc1.sub1.tld2 # 11 replace NXDOMAIN with CNAME
324 addr 12.12.12.12 nxc2.sub1.tld2 # 12 replace NXDOMAIN with CNAME chain
325 addr 127.4.4.1 a4-4.tld2 # 13 prefer 1st conflicting QNAME zone
327 addr 127.6.2.1 a6-2.tld2 # 15
328 addr 56.56.56.56 a3-6.tld2 # 16 wildcard CNAME
329 addr 57.57.57.57 a3-7.sub1.tld2 # 17 wildcard CNAME
330 addr 127.
[all...]
/bind-9.11.3/contrib/idn/idnkit-1.0-src/tools/runidn/
H A Dstub.c100 void *addr; local
110 if ((addr = shared_obj_findsymx(handle, name + 1)) != NULL) {
112 return (addr);
115 if ((addr = shared_obj_findsymx(handle, name)) != NULL) {
117 return (addr);
140 void *addr = shared_obj_findsym(RTLD_NEXT, name); local
142 if (addr != NULL) {
144 return (addr);
155 void *addr = shared_obj_findsym(shobj[i].handle, name);
156 if (addr !
196 idn_stub_gethostbyaddr(GHBA_ADDR_T addr, GHBA_ADDRLEN_T len, int type) argument
248 idn_stub_gethostbyaddr_r(GHBA_ADDR_T addr, GHBA_ADDRLEN_T len, int type, struct hostent *result, char *buffer, size_t buflen, struct hostent **rp, int *errp) argument
285 idn_stub_gethostbyaddr_r(GHBA_ADDR_T addr, int len, int type, struct hostent *result, char *buffer, int buflen, int *errp) argument
[all...]

Completed in 23 milliseconds

123456