Lines Matching defs:soa
68 #include <dns/soa.h>
4543 * Obtain ns, soa and cname counts for top of zone.
5076 dns_rdata_soa_t soa;
5110 result = dns_rdata_tostruct(&rdata, &soa, NULL);
5124 *serial = soa.serial;
5126 *refresh = soa.refresh;
5128 *retry = soa.retry;
5130 *expire = soa.expire;
5132 *minimum = soa.minimum;
10123 /* initiate soa query */
11047 dns_rdata_soa_t soa;
11086 * the current soa so as to force a refresh query.
11125 result = dns_rdata_tostruct(&rdata, &soa, NULL);
11128 result = dns_name_dup(&soa.origin, zone->mctx, &master);
11129 serial = soa.serial;
11707 dns_rdata_soa_t soa;
11909 * Only one soa at top of zone.
11941 result = dns_rdata_tostruct(&rdata, &soa, NULL);
11944 serial = soa.serial;
11985 } else if (isc_serial_eq(soa.serial, oldserial)) {
12012 soa.serial, master, oldserial);
13083 dns_rdata_soa_t soa;
13217 result = dns_rdata_tostruct(&rdata, &soa, NULL);
13219 serial = soa.serial;
13872 * Old bind's return formerr if they see a soa record. Retry w/o
13873 * the soa if we see a formerr and had sent a SOA.
14328 dns_rdata_soa_t soa;
14341 result = dns_rdata_tostruct(&rdata, &soa, NULL);
14344 if (isc_serial_gt(soa.serial, oldserial))
14353 soa.serial = oldserial;
14361 dns_rdatatype_soa, &soa, &b);