HomeSort by relevance Sort by last modified time
    Searched refs:SOA (Results 1 - 8 of 8) sorted by null

  /external/smack/src/org/xbill/DNS/
Zone.java 30 private SOARecord SOA;
48 if (type == Type.SOA)
69 return oneRRset(originNode, Type.SOA);
101 RRset rrset = oneRRset(originNode, Type.SOA);
104 ": exactly 1 SOA must be specified");
106 SOA = (SOARecord) it.next();
118 if (rtype == Type.SOA && !name.equals(origin)) {
119 throw new IOException("SOA owner " + name +
217 /** Returns the Zone's SOA record */
220 return SOA;
    [all...]
ZoneTransferIn.java 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) {
364 Record soa = new SOARecord(zname, dclass, 0, Name.root, local
379 SOARecord soa = (SOARecord) rec; local
    [all...]
Type.java 31 public static final int SOA = 6;
232 types.add(SOA, "SOA", new SOARecord());
SOARecord.java 28 * Creates an SOA Record from the given data
43 super(name, Type.SOA, dclass, ttl);
Update.java 31 Record soa = Record.newRecord(zone, Type.SOA, DClass.IN); local
32 addRecord(soa, Section.QUESTION);
Master.java 163 // BIND allows a missing TTL for the initial SOA record, and uses
164 // the SOA minimum value. If the SOA is not the first record,
167 if (currentType != Type.SOA)
Cache.java 87 NegativeElement(Name name, int type, SOARecord soa, int cred,
93 if (soa != null)
94 cttl = soa.getMinimum();
377 * @param soa The SOA record to add to the negative cache entry, or null.
378 * The negative cache ttl is derived from the SOA.
382 addNegative(Name name, int type, SOARecord soa, int cred) {
384 if (soa != null)
385 ttl = soa.getTTL();
395 soa, cred
664 RRset soa = null, ns = null; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
windns.h 663 DNS_SOA_DATAW SOA,Soa;
696 DNS_SOA_DATAA SOA,Soa;

Completed in 124 milliseconds