Searched refs:soa (Results 1 - 25 of 32) sorted by relevance

12

/bind-9.6-ESV-R11/lib/dns/rdata/generic/
H A Dsoa_6.c280 dns_rdata_soa_t *soa = source; local
285 REQUIRE(soa->common.rdtype == type);
286 REQUIRE(soa->common.rdclass == rdclass);
291 dns_name_toregion(&soa->origin, &region);
293 dns_name_toregion(&soa->contact, &region);
295 RETERR(uint32_tobuffer(soa->serial, target));
296 RETERR(uint32_tobuffer(soa->refresh, target));
297 RETERR(uint32_tobuffer(soa->retry, target));
298 RETERR(uint32_tobuffer(soa->expire, target));
299 return (uint32_tobuffer(soa
305 dns_rdata_soa_t *soa = target; local
358 dns_rdata_soa_t *soa = source; local
[all...]
/bind-9.6-ESV-R11/bin/tests/system/tsig/
H A Dtests.sh37 -y "md5:$md5" @10.53.0.1 soa -p 5300 > dig.out.md5.old || ret=1
46 -y "hmac-md5:md5:$md5" @10.53.0.1 soa -p 5300 > dig.out.md5.new || ret=1
55 -y "hmac-sha1:sha1:$sha1" @10.53.0.1 soa -p 5300 > dig.out.sha1 || ret=1
64 -y "hmac-sha224:sha224:$sha224" @10.53.0.1 soa -p 5300 > dig.out.sha224 || ret=1
73 -y "hmac-sha256:sha256:$sha256" @10.53.0.1 soa -p 5300 > dig.out.sha256 || ret=1
82 -y "hmac-sha384:sha384:$sha384" @10.53.0.1 soa -p 5300 > dig.out.sha384 || ret=1
91 -y "hmac-sha512:sha512:$sha512" @10.53.0.1 soa -p 5300 > dig.out.sha512 || ret=1
105 -y "hmac-md5-80:md5-trunc:$md5" @10.53.0.1 soa -p 5300 > dig.out.md5.trunc || ret=1
114 -y "hmac-sha1-80:sha1-trunc:$sha1" @10.53.0.1 soa -p 5300 > dig.out.sha1.trunc || ret=1
123 -y "hmac-sha224-112:sha224-trunc:$sha224" @10.53.0.1 soa
[all...]
/bind-9.6-ESV-R11/bin/tests/system/dialup/
H A Dtests.sh31 $DIG $DIGOPTS example. @10.53.0.1 soa > dig.out.ns1.test || ret=1
37 $DIG $DIGOPTS example. @10.53.0.2 soa > dig.out.ns2.test || ret=1
56 $DIG $DIGOPTS example. @10.53.0.3 soa > dig.out.ns3.test || ret=1
/bind-9.6-ESV-R11/bin/tests/system/database/
H A Dtests.sh34 $DIG $DIGOPTS soa database. @10.53.0.1 > dig.out.ns1.test$n || ret=1
50 $DIG $DIGOPTS soa database. @10.53.0.1 > dig.out.ns1.test$n || ret=1
/bind-9.6-ESV-R11/bin/tests/system/masterfile/
H A Dtests.sh44 $DIG +tcp +noall +answer example soa @10.53.0.2 -p 5300 > dig.out.$n
52 $DIG +tcp +all missing soa @10.53.0.2 -p 5300 > dig.out.$n
/bind-9.6-ESV-R11/bin/tests/system/dlv/
H A Dtests.sh47 $DIG $DIGOPTS child1.druz soa @10.53.0.5 > dig.out.ns5.test$n || ret=1
55 $DIG $DIGOPTS grand.child1.druz soa @10.53.0.5 > dig.out.ns5.test$n || ret=1
/bind-9.6-ESV-R11/bin/tests/system/lwresd/
H A Dtests.sh31 $DIG +tcp -p 5300 @10.53.0.1 soa $zone > dig.out
/bind-9.6-ESV-R11/bin/tests/system/xfer/
H A Dclean.sh26 rm -f dig.out.soa.ns3
H A Dtests.sh123 $DIG $DIGOPTS @10.53.0.3 -p 5300 +noall +answer soa example > dig.out.soa.ns3
124 grep "1397051953" dig.out.soa.ns3 > /dev/null && break;
/bind-9.6-ESV-R11/lib/dns/
H A Dsoa.c27 #include <dns/soa.h>
H A Dnsec.c301 isc_boolean_t soa; local
334 soa = dns_nsec_typepresent(&rdata, dns_rdatatype_soa);
335 if (ns && !soa) {
346 } else if (atparent && ns && soa) {
H A Dnsec3.c1452 isc_boolean_t soa; local
1584 soa = dns_nsec3_typepresent(&rdata, dns_rdatatype_soa);
1585 if (ns && !soa) {
1597 } else if (atparent && ns && soa) {
/bind-9.6-ESV-R11/bin/dig/
H A Dnslookup.c91 "soa = ", /* 6 */
168 dns_rdata_soa_t soa; local
172 result = dns_rdata_tostruct(rdata, &soa, NULL);
175 dns_name_format(&soa.origin, namebuf, sizeof(namebuf));
177 dns_name_format(&soa.contact, namebuf, sizeof(namebuf));
179 printf("\tserial = %u\n", soa.serial);
180 printf("\trefresh = %u\n", soa.refresh);
181 printf("\tretry = %u\n", soa.retry);
182 printf("\texpire = %u\n", soa.expire);
183 printf("\tminimum = %u\n", soa
[all...]
H A Ddighost.c1768 dns_rdata_soa_t soa; local
1775 soa.mctx = mctx;
1776 soa.serial = lookup->ixfr_serial;
1777 soa.refresh = 0;
1778 soa.retry = 0;
1779 soa.expire = 0;
1780 soa.minimum = 0;
1781 soa.common.rdclass = lookup->rdclass;
1782 soa.common.rdtype = dns_rdatatype_soa;
1784 dns_name_init(&soa
2798 dns_rdata_soa_t soa; local
[all...]
/bind-9.6-ESV-R11/bin/tests/system/notify/
H A Dtests.sh32 $DIG +tcp example @10.53.0.2 soa -p 5300 > dig.out.ns2.test$n || ret=1
35 $DIG +tcp example @10.53.0.3 soa -p 5300 > dig.out.ns3.test$n || ret=1
/bind-9.6-ESV-R11/bin/tests/system/dnssec/
H A Dtests.sh329 $DIG $DIGOPTS r.insecure.example. soa @10.53.0.3 \
331 $DIG $DIGOPTS r.insecure.example. soa @10.53.0.4 \
344 $DIG $DIGOPTS r.insecure.nsec3.example. soa @10.53.0.3 \
346 $DIG $DIGOPTS r.insecure.nsec3.example. soa @10.53.0.4 \
359 $DIG $DIGOPTS r.insecure.optout.example. soa @10.53.0.3 \
361 $DIG $DIGOPTS r.insecure.optout.example. soa @10.53.0.4 \
519 $DIG $DIGOPTS example. soa @10.53.0.5 > dig.out.ns5.test$n || ret=1
618 $DIG $DIGOPTS r.insecure.secure.example. @10.53.0.2 soa > dig.out.ns2.test$n \
620 $DIG $DIGOPTS r.insecure.secure.example. @10.53.0.4 soa > dig.out.ns4.test$n \
645 $DIG $DIGOPTS +noauth example. soa
[all...]
/bind-9.6-ESV-R11/bin/tests/system/upforwd/
H A Dtests.sh117 @10.53.0.3 soa -p 5300 > dig.out.ns3 || ret=1
/bind-9.6-ESV-R11/bin/tests/
H A Drdata_test.c246 static dns_rdata_soa_t soa; local
247 result = dns_rdata_tostruct(rdata, sp = &soa, NULL);
513 static dns_rdata_soa_t soa; local
514 result = dns_rdata_tostruct(rdata, sp = &soa, mctx);
810 dns_rdata_soa_t soa;
811 result = dns_rdata_fromstruct(rdata2, rdc, rdt, &soa, b);
/bind-9.6-ESV-R11/bin/tests/system/acl/
H A Dtests.sh148 $DIG +tcp soa example. \
/bind-9.6-ESV-R11/bin/tests/system/unknown/
H A Dtests.sh123 $DIG $DIGOPTS @10.53.0.1 broken$i. soa in > dig.out || ret=1
/bind-9.6-ESV-R11/bin/tests/system/resolver/
H A Dtests.sh57 $DIG +tcp . @10.53.0.4 soa -p 5300 > dig.ns4.out.${n} || ret=1
66 $DIG +tcp . @10.53.0.5 soa -p 5300 > dig.ns5.out.${n} || ret=1
/bind-9.6-ESV-R11/lib/dns/win32/
H A Dlibdns.mak184 -@erase "$(INTDIR)\soa.obj"
302 "$(INTDIR)\soa.obj" \
484 -@erase "$(INTDIR)\soa.obj"
485 -@erase "$(INTDIR)\soa.sbr"
617 "$(INTDIR)\soa.sbr" \
705 "$(INTDIR)\soa.obj" \
1622 SOURCE=..\soa.c
1627 "$(INTDIR)\soa.obj" : $(SOURCE) "$(INTDIR)"
1634 "$(INTDIR)\soa.obj" "$(INTDIR)\soa
[all...]
/bind-9.6-ESV-R11/bin/named/
H A Dserver.c77 #include <dns/soa.h>
1064 dns_rdata_soa_t soa; local
1076 soa.common.rdtype = dns_rdatatype_soa;
1077 soa.common.rdclass = dns_db_class(db);
1078 soa.mctx = NULL;
1079 soa.serial = 0;
1080 soa.refresh = 28800;
1081 soa.retry = 7200;
1082 soa.expire = 604800;
1083 soa
[all...]
H A Dquery.c2154 dns_rdata_soa_t soa; local
2159 result = dns_rdata_tostruct(&rdata, &soa, NULL);
2173 if (rdataset->ttl > soa.minimum)
2174 rdataset->ttl = soa.minimum;
2175 if (sigrdataset != NULL && sigrdataset->ttl > soa.minimum)
2176 sigrdataset->ttl = soa.minimum;
3632 dns_rdata_soa_t soa; local
3649 result = dns_rdata_tostruct(&rdata, &soa, NULL);
3651 if (dns_name_equal(&soa.origin, &prisoner) &&
3652 dns_name_equal(&soa
[all...]
/bind-9.6-ESV-R11/bin/nsupdate/
H A Dnsupdate.c2084 dns_rdata_soa_t soa; local
2159 ddebug("retrying soa request without TSIG");
2248 result = dns_rdata_tostruct(&soarr, &soa, NULL);
2252 dns_name_clone(&soa.origin, &master);
2278 dns_rdata_freestruct(&soa);

Completed in 6447 milliseconds

12