Lines Matching defs:private
55 #include <dns/private.h>
3488 * Find private-type records at the zone apex which signal that an NSEC3 chain
3530 * Get the RRset containing all private-type records at the zone apex.
3547 dns_rdata_t private = DNS_RDATA_INIT;
3549 dns_rdataset_current(&rdataset, &private);
3551 * Try extracting NSEC3PARAM RDATA from this private-type
3552 * record. Failure means this private-type record does not
3555 if (!dns_nsec3param_fromprivate(&private, &rdata, buf,
3565 * private-type record to zone_addnsec3chain() so that
6217 * for the private part.
6992 * longer have any private records.
7018 * - remove all private-type records containing NSEC3PARAM RDATA matching
7027 * in the relevant private-type record, but with the "flags" field set to
7103 * Delete all private records which match that in nsec3chain.
7115 dns_rdata_t private = DNS_RDATA_INIT;
7118 dns_rdataset_current(&rdataset, &private);
7119 if (!dns_nsec3param_fromprivate(&private, &rdata,
7136 name, rdataset.ttl, &private));
8008 * We have changed the NSEC3PARAM or private RRsets
14428 dns_rdata_t private = DNS_RDATA_INIT;
14443 dns_nsec3param_toprivate(&rdata, &private,
14446 nsec3param->length = private.length;
14457 * walk private type records, converting them to nsec3 parameters
14466 dns_rdata_t private = DNS_RDATA_INIT;
14468 dns_rdataset_current(&prdataset, &private);
14471 "looping through nsec3param private data");
14474 * Do we have a valid private record?
14476 if (!dns_nsec3param_fromprivate(&private, &rdata,
14513 * Copy the remaining private records so the nsec/nsec3
14516 INSIST(private.length <= sizeof(nsec3param->data));
14517 memmove(nsec3param->data, private.data, private.length);
14518 nsec3param->length = private.length;
14541 * Populate new zone db with private type records found by save_nsec3param().
14559 * Loop through the list of private-type records, set the INITIAL
14699 * Call restore_nsec3param() to create private-type records from
18683 /* construct a private-type rdata */
18706 * Check whether NSEC3 chain addition or removal specified by the private-type
18708 * If not, modify the relevant private-type records at the zone apex and call
18762 * Does a private-type record already exist for this chain?
18822 * We're creating an NSEC3 chain. Add the private-type record
18907 * the zone apex, convert it to a private-type record and store the latter