Searched refs:ttl (Results 1 - 25 of 142) sorted by relevance

123456

/external/smack/src/org/xbill/DNS/
H A DInvalidTTLException.java14 InvalidTTLException(long ttl) { argument
15 super("Invalid DNS TTL: " + ttl);
H A DTTL.java41 long ttl = 0;
58 ttl += value;
60 if (ttl > 0xFFFFFFFFL)
64 if (ttl == 0)
65 ttl = value;
67 if (ttl > 0xFFFFFFFFL)
69 else if (ttl > MAX_VALUE && clamp)
70 ttl = MAX_VALUE;
71 return ttl;
87 format(long ttl) { argument
[all...]
H A DSPFRecord.java30 SPFRecord(Name name, int dclass, long ttl, List strings) { argument
31 super(name, Type.SPF, dclass, ttl, strings);
40 SPFRecord(Name name, int dclass, long ttl, String string) { argument
41 super(name, Type.SPF, dclass, ttl, string);
H A DTXTRecord.java30 TXTRecord(Name name, int dclass, long ttl, List strings) { argument
31 super(name, Type.TXT, dclass, ttl, strings);
40 TXTRecord(Name name, int dclass, long ttl, String string) { argument
41 super(name, Type.TXT, dclass, ttl, string);
H A DAFSDBRecord.java30 AFSDBRecord(Name name, int dclass, long ttl, int subtype, Name host) { argument
31 super(name, Type.AFSDB, dclass, ttl, subtype, "subtype", host, "host");
H A DCNAMERecord.java27 CNAMERecord(Name name, int dclass, long ttl, Name alias) { argument
28 super(name, Type.CNAME, dclass, ttl, alias, "alias");
H A DDNAMERecord.java27 DNAMERecord(Name name, int dclass, long ttl, Name alias) { argument
28 super(name, Type.DNAME, dclass, ttl, alias, "alias");
H A DMBRecord.java27 MBRecord(Name name, int dclass, long ttl, Name mailbox) { argument
28 super(name, Type.MB, dclass, ttl, mailbox, "mailbox");
H A DMDRecord.java28 MDRecord(Name name, int dclass, long ttl, Name mailAgent) { argument
29 super(name, Type.MD, dclass, ttl, mailAgent, "mail agent");
H A DMFRecord.java28 MFRecord(Name name, int dclass, long ttl, Name mailAgent) { argument
29 super(name, Type.MF, dclass, ttl, mailAgent, "mail agent");
H A DMGRecord.java28 MGRecord(Name name, int dclass, long ttl, Name mailbox) { argument
29 super(name, Type.MG, dclass, ttl, mailbox, "mailbox");
H A DMRRecord.java28 MRRecord(Name name, int dclass, long ttl, Name newName) { argument
29 super(name, Type.MR, dclass, ttl, newName, "new name");
H A DNSAP_PTRRecord.java28 NSAP_PTRRecord(Name name, int dclass, long ttl, Name target) { argument
29 super(name, Type.NSAP_PTR, dclass, ttl, target, "target");
H A DNSRecord.java27 NSRecord(Name name, int dclass, long ttl, Name target) { argument
28 super(name, Type.NS, dclass, ttl, target, "target");
H A DPTRRecord.java28 PTRRecord(Name name, int dclass, long ttl, Name target) { argument
29 super(name, Type.PTR, dclass, ttl, target, "target");
H A DRTRecord.java29 RTRecord(Name name, int dclass, long ttl, int preference, argument
32 super(name, Type.RT, dclass, ttl, preference, "preference",
H A DSingleNameBase.java24 SingleNameBase(Name name, int type, int dclass, long ttl) { argument
25 super(name, type, dclass, ttl);
29 SingleNameBase(Name name, int type, int dclass, long ttl, Name singleName, argument
32 super(name, type, dclass, ttl);
H A DKXRecord.java29 KXRecord(Name name, int dclass, long ttl, int preference, Name target) { argument
30 super(name, Type.KX, dclass, ttl, preference, "preference",
H A DSingleCompressedNameBase.java20 SingleCompressedNameBase(Name name, int type, int dclass, long ttl, argument
23 super(name, type, dclass, ttl, singleName, description);
H A DMXRecord.java29 MXRecord(Name name, int dclass, long ttl, int priority, Name target) { argument
30 super(name, Type.MX, dclass, ttl, priority, "priority",
H A DRRSIGRecord.java42 RRSIGRecord(Name name, int dclass, long ttl, int covered, int alg, long origttl, argument
46 super(name, Type.RRSIG, dclass, ttl, covered, alg, origttl, expire,
/external/iptables/include/linux/netfilter_ipv4/
H A Dipt_TTL.h17 u_int8_t ttl; member in struct:ipt_TTL_info
H A Dipt_ttl.h17 u_int8_t ttl; member in struct:ipt_ttl_info
/external/kernel-headers/original/linux/netfilter_ipv4/
H A Dipt_TTL.h17 u_int8_t ttl; member in struct:ipt_TTL_info
/external/android-clat/
H A Dicmp.c29 * ttl - the ttl of the received packet.
31 uint8_t icmp_guess_ttl(uint8_t ttl) { argument
32 if (ttl > 128) {
33 return 255 - ttl;
34 } else if (ttl > 64) {
35 return 128 - ttl;
36 } else if (ttl > 32) {
37 return 64 - ttl;
39 return 32 - ttl;
[all...]

Completed in 240 milliseconds

123456