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

  /external/smack/src/org/xbill/DNS/
TTL.java 6 * Routines for parsing BIND-style TTL values. These values consist of
13 public final class TTL {
18 TTL() {}
27 * Parses a TTL-like value, which can either be expressed as a number or a
34 * @throws NumberFormatException The string was not in a valid TTL format.
41 long ttl = 0; local
58 ttl += value;
60 if (ttl > 0xFFFFFFFFL)
64 if (ttl == 0)
65 ttl = value
    [all...]
Record.java 12 * A record contains a name, type, class, ttl, and rdata.
23 protected long ttl; field in class:Record
34 Record(Name name, int type, int dclass, long ttl) {
39 TTL.check(ttl);
43 this.ttl = ttl;
53 getEmptyRecord(Name name, int type, int dclass, long ttl, boolean hasData) {
67 rec.ttl = ttl;
178 long ttl; local
    [all...]
SIGBase.java 31 SIGBase(Name name, int type, int dclass, long ttl, int covered, int alg,
35 super(name, type, dclass, ttl);
37 TTL.check(origttl);
139 /** Returns the original TTL of the RRset */
Tokenizer.java 466 * Gets the next token from a tokenizer and parses it as a TTL.
470 * @see TTL
474 String next = _getIdentifier("a TTL value");
476 return TTL.parseTTL(next);
479 throw exception("expected a TTL value");
484 * Gets the next token from a tokenizer and parses it as if it were a TTL.
488 * @see TTL
492 String next = _getIdentifier("a TTL-like value");
494 return TTL.parse(next, false);
497 throw exception("expected a TTL-like value")
    [all...]
Master.java 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 typ
368 long ttl = ((SOARecord)last).getMinimum(); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
ParameterNames.java 135 public static final String TTL = "ttl";
Via.java 75 /** The "TTL" parameter is designating the time-to-live value.
77 public static final String TTL = ParameterNames.TTL;
422 * Returns the value of the ttl parameter, or -1 if this is not set.
424 * @return the integer value of the <code>ttl</code> parameter
427 int ttl = getParameterAsInt(ParameterNames.TTL); local
428 return ttl;
432 * Sets the value of the ttl parameter. The ttl parameter specifies th
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
InetAddressTest.java 386 final int TTL = 20;
410 assertTrue(destAddress.isReachable(loopbackInterface, TTL, TIME_OUT));
416 assertFalse(destAddress.isReachable(loopbackInterface, TTL, TIME_OUT));
  /external/nist-sip/java/gov/nist/javax/sip/address/
NetObject.java 56 protected static final String TTL = "ttl";
SipUri.java 186 // transport, user, ttl or method must match when present in either
463 *remove the ttl value from the parameter list if it exists.
467 uriParms.delete(TTL);
816 /** Returns the value of the "ttl" parameter, or -1 if this is not set.
817 * This method is equivalent to getParameter("ttl").
819 * @return the value of the <code>ttl</code> parameter
822 Integer ttl = (Integer) uriParms.getValue("ttl"); local
823 if (ttl != null)
824 return ttl.intValue()
    [all...]
  /external/iproute2/doc/
ip-tunnels.tex 88 A: Yes. By default tunnel driver copies \verb|ttl| value from
92 with ttl 1 will reach peering host (f.e.\ RIP, OSPF or EBGP)
94 tunnel loops, you may append option \verb|ttl 64|, when creating tunnel
235 \item \verb|ttl N| --- set fixed TTL \verb|N| on tunneled packets.
237 meaning that packets inherit TTL value.
248 It is enabled by default. Note that fixed ttl is incompatible
249 with this option: tunnels with fixed ttl always make pmtu discovery.
301 ip tunnel change Cisco mode sit local ME remote HE ttl 32
393 remote 224.66.66.66 ttl 1
    [all...]
ip-cref.tex     [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]

Completed in 271 milliseconds