/bind-9.6-ESV-R11/lib/dns/rdata/generic/ |
H A D | soa_6.c | 280 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, ®ion); 293 dns_name_toregion(&soa->contact, ®ion); 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 D | tests.sh | 37 -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 D | tests.sh | 31 $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 D | tests.sh | 34 $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 D | tests.sh | 44 $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 D | tests.sh | 47 $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 D | tests.sh | 31 $DIG +tcp -p 5300 @10.53.0.1 soa $zone > dig.out
|
/bind-9.6-ESV-R11/bin/tests/system/xfer/ |
H A D | clean.sh | 26 rm -f dig.out.soa.ns3
|
H A D | tests.sh | 123 $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 D | soa.c | 27 #include <dns/soa.h>
|
H A D | nsec.c | 301 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 D | nsec3.c | 1452 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 D | nslookup.c | 91 "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 D | dighost.c | 1768 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 D | tests.sh | 32 $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 D | tests.sh | 329 $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 D | tests.sh | 117 @10.53.0.3 soa -p 5300 > dig.out.ns3 || ret=1
|
/bind-9.6-ESV-R11/bin/tests/ |
H A D | rdata_test.c | 246 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 D | tests.sh | 148 $DIG +tcp soa example. \
|
/bind-9.6-ESV-R11/bin/tests/system/unknown/ |
H A D | tests.sh | 123 $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 D | tests.sh | 57 $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 D | libdns.mak | 184 -@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 D | server.c | 77 #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 D | query.c | 2154 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 D | nsupdate.c | 2084 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);
|