Home | History | Annotate | Download | only in DNS

Lines Matching refs:soa

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;
666 if (auth[i].getType() == Type.SOA &&
668 soa = auth[i];
676 if (rcode == Rcode.NXDOMAIN || soa
680 if (soa != null)
681 soarec = (SOARecord) soa.first();