/bind-9.6-ESV-R11/bin/tests/system/ |
H A D | stop.pl | 20 # Framework for stopping test servers 23 # If a server is specified, stop it. Otherwise, stop all servers for test. 57 my @servers; 60 # Determine which servers need to be stopped. 62 @servers = ($server); 73 push @servers, @ns, @lwresd, @ans; 79 foreach my $server (grep /^ns/, @servers) { 83 wait_for_servers(30, grep /^ns/, @servers); 88 foreach my $server (@servers) { 92 wait_for_servers(60, @servers); [all...] |
/bind-9.6-ESV-R11/lib/dns/rdata/generic/ |
H A D | hip_55.h | 29 unsigned char * servers; member in struct:dns_rdata_hip
|
H A D | hip_55.c | 269 REQUIRE((hip->servers == NULL && hip->servers_len == 0) || 270 (hip->servers != NULL && hip->servers_len != 0)); 287 return(mem_tobuffer(target, hip->servers, hip->servers_len)); 314 hip->hit = hip->key = hip->servers = NULL; 328 hip->servers = mem_maybedup(mctx, region.base, region.length); 329 if (hip->servers == NULL) 342 if (hip->servers != NULL) 343 isc_mem_free(mctx, hip->servers); 359 if (hip->servers != NULL) 360 isc_mem_free(hip->mctx, hip->servers); [all...] |
/bind-9.6-ESV-R11/bin/tests/system/stress/ |
H A D | setup.pl | 37 . IN SOA gson.nominum.com. a.root.servers.nil. ( 44 . NS a.root-servers.nil. 45 a.root-servers.nil. A 10.53.0.1
|
/bind-9.6-ESV-R11/bin/tests/system/logfileconfig/ns1/ |
H A D | named.dirconf | 39 category lame-servers { null; };
|
H A D | named.pipeconf | 39 category lame-servers { null; };
|
H A D | named.plain | 39 category lame-servers { null; };
|
H A D | named.symconf | 39 category lame-servers { null; };
|
/bind-9.6-ESV-R11/bin/dig/include/dig/ |
H A D | dig.h | 337 requeue_lookup(dig_lookup_t *lookold, isc_boolean_t servers); 343 clone_lookup(dig_lookup_t *lookold, isc_boolean_t servers);
|
/bind-9.6-ESV-R11/bin/nsupdate/ |
H A D | nsupdate.c | 144 static isc_sockaddr_t *servers; variable 661 isc_mem_put(mctx, servers, ns_total * sizeof(isc_sockaddr_t)); 745 /* No name servers in resolv.conf; default to loopback. */ 748 servers = isc_mem_get(mctx, ns_total * sizeof(isc_sockaddr_t)); 749 if (servers == NULL) 752 isc_sockaddr_fromin(&servers[0], &localhost, DNSDEFAULTPORT); 754 servers = isc_mem_get(mctx, ns_total * sizeof(isc_sockaddr_t)); 755 if (servers == NULL) 763 isc_sockaddr_fromin(&servers[i], &in4, 769 isc_sockaddr_fromin6(&servers[ [all...] |
/bind-9.6-ESV-R11/lib/dns/ |
H A D | peer.c | 154 dns_peerlist_peerbyaddr(dns_peerlist_t *servers, argument 161 REQUIRE(DNS_PEERLIST_VALID(servers)); 163 server = ISC_LIST_HEAD(servers->elements);
|
/bind-9.6-ESV-R11/bin/rndc/ |
H A D | rndc.c | 441 const cfg_obj_t *servers = NULL; local 496 (void)cfg_map_get(config, "server", &servers); 497 if (servers != NULL) { 498 for (elt = cfg_list_first(servers);
|
/bind-9.6-ESV-R11/lib/bind9/ |
H A D | check.c | 177 (void)cfg_map_get(options, "dual-stack-servers", &alternates); 1610 const cfg_obj_t *servers; local 1622 servers = NULL; 1624 (void)cfg_map_get(voptions, "server", &servers); 1625 if (servers == NULL) 1626 (void)cfg_map_get(config, "server", &servers); 1627 if (servers == NULL) 1630 for (e1 = cfg_list_first(servers); e1 != NULL; e1 = cfg_list_next(e1)) { 1852 * Check that dual-stack-servers is reasonable. 1902 * Global servers ca [all...] |
/bind-9.6-ESV-R11/bin/tests/ |
H A D | named.conf | 60 // servers won't like it. 517 * lame-servers messages like "Lame server on ..." 552 category lame-servers { null; }; // don't log these at all
|
/bind-9.6-ESV-R11/bin/dig/ |
H A D | dighost.c | 545 * This is little more than a linked list of servers to query in hopes 704 * linked lists: the server list (servers to query) and the query list 705 * (outstanding queries which have been made to the listed servers). 791 * Caution: If you don't clone the servers, you MUST clone the server 795 clone_lookup(dig_lookup_t *lookold, isc_boolean_t servers) { argument 857 if (servers) 866 * queued for processing. If servers are not cloned in the requeue, they 872 requeue_lookup(dig_lookup_t *lookold, isc_boolean_t servers) { argument 881 looknew = clone_lookup(lookold, servers); 1536 * name server search modes to start a new lookup using servers fro [all...] |