Home | History | Annotate | Download | only in DNS

Lines Matching refs:soa

110 	 * @param soa The starting SOA.
112 public void startIXFRDeletes(Record soa) throws ZoneTransferException;
116 * @param soa The starting SOA.
118 public void startIXFRAdds(Record soa) throws ZoneTransferException;
139 public void startIXFRDeletes(Record soa) {
141 delta.deletes.add(soa);
142 delta.start = getSOASerial(soa);
146 public void startIXFRAdds(Record soa) {
148 delta.adds.add(soa);
149 delta.end = getSOASerial(soa);
364 Record soa = new SOARecord(zname, dclass, 0, Name.root,
367 query.addRecord(soa, Section.AUTHORITY);
379 SOARecord soa = (SOARecord) rec;
380 return soa.getSerial();
411 if (type != Type.SOA)
412 fail("missing initial SOA");
414 // Remember the serial number in the initial SOA; we need it
428 // If the transfer begins with 1 SOA, it's an AXFR.
430 if (qtype == Type.IXFR && type == Type.SOA &&
453 if (type == Type.SOA) {
468 if (type == Type.SOA) {
490 if (type == Type.SOA) {