Home | History | Annotate | Download | only in DNS

Lines Matching refs:TTL

47  * @param ttl The initial default TTL.
51 Master(String filename, Name origin, long ttl) throws IOException {
52 this(new File(filename), origin, ttl);
80 * @param ttl The initial default TTL.
83 Master(InputStream in, Name origin, long ttl) {
89 defaultTTL = ttl;
128 // class ttl type
129 // ttl class type
131 // ttl type
142 currentTTL = TTL.parseTTL(s);
163 // BIND allows a missing TTL for the initial SOA record, and uses
168 throw st.exception("missing TTL");
221 // Then the ttl/class/type, in the same form as a normal record.
316 } else if (s.equalsIgnoreCase("$TTL")) {
368 long ttl = ((SOARecord)last).getMinimum();
369 last.setTTL(ttl);
370 defaultTTL = ttl;