Searched refs:rrset (Results 1 - 16 of 16) sorted by relevance

/macosx-10.10/bind9-45.101/bind9/lib/lwres/
H A Dgetrrset.c36 * rrset. The resource records contained in #rri_rdatas and #rri_sigs are
46 * lwres_freerrset(). rrset is a pointer to a struct rrset created by a
149 struct rrsetinfo *rrset = NULL; local
190 rrset = sane_malloc(sizeof(struct rrsetinfo));
191 if (rrset == NULL) {
195 rrset->rri_name = NULL;
196 rrset->rri_rdclass = response->rdclass;
197 rrset->rri_rdtype = response->rdtype;
198 rrset
272 lwres_freerrset(struct rrsetinfo *rrset) argument
[all...]
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dgetrrsetbyname-ldns.c70 struct rrsetinfo *rrset = NULL; local
121 /* initialize rrset */
122 rrset = calloc(1, sizeof(struct rrsetinfo));
123 if (rrset == NULL) {
129 rrset->rri_nrdatas = ldns_rr_list_rr_count(rrdata);
130 if (!rrset->rri_nrdatas) {
137 if ((rrset->rri_name = malloc(len)) == NULL) {
141 memcpy(rrset->rri_name,
144 rrset->rri_rdclass = ldns_rr_get_class(ldns_rr_list_rr(rrdata, 0));
145 rrset
254 freerrset(struct rrsetinfo *rrset) argument
[all...]
H A Dgetrrsetbyname.c205 struct rrsetinfo *rrset = NULL; local
276 /* initialize rrset */
277 rrset = calloc(1, sizeof(struct rrsetinfo));
278 if (rrset == NULL) {
282 rrset->rri_rdclass = response->query->class;
283 rrset->rri_rdtype = response->query->type;
284 rrset->rri_ttl = response->answer->ttl;
285 rrset->rri_nrdatas = response->header.ancount;
290 rrset->rri_flags |= RRSET_VALIDATED;
294 rrset
362 freerrset(struct rrsetinfo *rrset) argument
[all...]
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/limits/
H A Dtests.sh45 echo "I:exactly maximum rrset"
46 $DIG +tcp +norec a-maximum-rrset.example. @10.53.0.1 a -p 5300 > dig.out.a-maximum-rrset \
48 #dig a-maximum-rrset.example. @10.53.0.1 a -p 5300 > knowngood.dig.out.a-maximum-rrset
49 $PERL ../digcomp.pl knowngood.dig.out.a-maximum-rrset dig.out.a-maximum-rrset || status=1
51 echo "I:exceed maximum rrset (5000 A records)"
/macosx-10.10/mDNSResponder-561.1.1/mDNSCore/
H A Ddnssec.c310 rvfrom = ae->rrset;
311 rvto = &ac->rrset;
349 RRVerifier *rrset; local
358 rrset = ac->rrset;
359 while (rrset)
361 next = rrset->next;
362 mDNSPlatformMemFree(rrset);
363 rrset = next;
365 ac->rrset
415 RRVerifier *rrset; local
1882 ValidateSignatureWithKey(DNSSECVerifier *dv, RRVerifier *rrset, RRVerifier *keyv, RRVerifier *sig) argument
2062 RRVerifier *rrset; local
2120 ValidateSignatureWithKeyForAllRRSigs(DNSSECVerifier *dv, RRVerifier *rrset, RRVerifier *keyv, RRVerifier *sig) argument
2795 RRVerifier *rrset; local
[all...]
H A Ddnssec.h47 // Each AuthChain element has one rrset (with multiple resource records of same type), rrsig and key
48 // that validates the rrset.
52 RRVerifier *rrset; // RRSET that is authenticated member in struct:AuthChain_struct
109 RRVerifier *rrset; // rrset for which we have to verify member in struct:DNSSECVerifier_struct
110 RRVerifier *rrsig; // RRSIG for rrset
111 RRVerifier *key; // DNSKEY for rrset
H A Dnsec.c192 if (!dv->rrset)
194 LogMsg("VerifyNSEC: ERROR!! AddRRSetToVerifier missing rrset");
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/rrsetorder/ns1/
H A Dnamed.conf31 rrset-order {
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/rrsetorder/ns2/
H A Dnamed.conf32 rrset-order {
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/rrsetorder/ns3/
H A Dnamed.conf32 rrset-order {
/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Drootns.c299 inrrset(dns_rdataset_t *rrset, dns_rdata_t *rdata) { argument
303 result = dns_rdataset_first(rrset);
305 dns_rdataset_current(rrset, &current);
309 result = dns_rdataset_next(rrset);
453 "checkhints%s%s: unable to get root NS rrset "
464 "checkhints%s%s: unable to get root NS rrset "
/macosx-10.10/bind9-45.101/bind9/bin/named/
H A Dupdate.c486 typedef isc_result_t rrset_func(void *data, dns_rdataset_t *rrset);
709 * Set '*exists' to true iff an rrset of the given type exists,
766 cname_compatibility_action(void *data, dns_rdataset_t *rrset) { argument
768 if (rrset->type != dns_rdatatype_cname &&
769 ! dns_rdatatype_isdnssec(rrset->type))
775 * Check whether there is an rrset incompatible with adding a CNAME RR,
779 * If such an incompatible rrset exists, set '*exists' to ISC_TRUE.
819 name_exists_action(void *data, dns_rdataset_t *rrset) { argument
821 UNUSED(rrset);
861 ssu_checkrule(void *data, dns_rdataset_t *rrset) { argument
1564 is_non_nsec_action(void *data, dns_rdataset_t *rrset) argument
[all...]
/macosx-10.10/postfix-255/postfix/src/tls/
H A Dtls_dane.c1048 static DNS_RR *process_rrs(TLS_DANE *dane, DNS_RR *rrset) argument
1068 rrset = tlsa_apply(rrset, parse_tlsa_rr, &ctx);
1076 rrset = tlsa_apply(rrset, parse_tlsa_rr, &ctx);
1081 return (rrset);
/macosx-10.10/bind9-45.101/bind9/bin/tests/
H A Dnamed.conf202 rrset-order {
/macosx-10.10/vim-55/runtime/syntax/
H A Dnamed.vim133 syn keyword namedOption contained topology sortlist rrset-order
/macosx-10.10/bind9-45.101/bind9/
H A Dconfigure2256 --enable-fixed-rrset enable fixed rrset ordering
25839 # Activate "rrset-order fixed" or not?
25841 # Check whether --enable-fixed-rrset was given.

Completed in 295 milliseconds