Searched defs:ipkl (Results 1 - 4 of 4) sorted by relevance
/bind-9.11.3/lib/dns/ |
H A D | ipkeylist.c | 21 dns_ipkeylist_init(dns_ipkeylist_t *ipkl) { argument 22 ipkl->count = 0; 23 ipkl->allocated = 0; 24 ipkl->addrs = NULL; 25 ipkl->dscps = NULL; 26 ipkl->keys = NULL; 27 ipkl->labels = NULL; 31 dns_ipkeylist_clear(isc_mem_t *mctx, dns_ipkeylist_t *ipkl) { argument 34 REQUIRE(ipkl != NULL); 36 if (ipkl 165 dns_ipkeylist_resize(isc_mem_t *mctx, dns_ipkeylist_t *ipkl, unsigned int n) argument [all...] |
H A D | catz.c | 1020 catz_process_masters(dns_catz_zone_t *zone, dns_ipkeylist_t *ipkl, argument 1037 REQUIRE(ipkl != NULL); 1119 for (i = 0; i < ipkl->count; i++) { 1120 if (ipkl->labels[i] != NULL && 1121 !dns_name_compare(name, ipkl->labels[i])) 1125 if (i < ipkl->count) { /* we have this record already */ 1127 ipkl->keys[i] = keyname; 1129 memmove(&ipkl->addrs[i], &sockaddr, 1132 result = dns_ipkeylist_resize(mctx, ipkl, 1138 ipkl [all...] |
/bind-9.11.3/bin/named/ |
H A D | config.c | 571 isc_mem_t *mctx, dns_ipkeylist_t *ipkl) 594 REQUIRE(ipkl != NULL); 595 REQUIRE(ipkl->count == 0); 596 REQUIRE(ipkl->addrs == NULL); 597 REQUIRE(ipkl->keys == NULL); 598 REQUIRE(ipkl->dscps == NULL); 599 REQUIRE(ipkl->labels == NULL); 600 REQUIRE(ipkl->allocated == 0); 853 ipkl->addrs = addrs; 854 ipkl 570 ns_config_getipandkeylist(const cfg_obj_t *config, const cfg_obj_t *list, isc_mem_t *mctx, dns_ipkeylist_t *ipkl) argument [all...] |
H A D | zoneconf.c | 1121 dns_ipkeylist_t ipkl; local 1122 dns_ipkeylist_init(&ipkl); 1125 &ipkl)); 1127 ipkl.addrs, 1128 ipkl.dscps, 1129 ipkl.keys, 1130 ipkl.count); 1131 dns_ipkeylist_clear(mctx, &ipkl); 1594 dns_ipkeylist_t ipkl; local 1595 dns_ipkeylist_init(&ipkl); [all...] |
Completed in 21 milliseconds