HomeSort by relevance Sort by last modified time
    Searched refs:ttl (Results 1 - 25 of 136) sorted by null

1 2 3 4 5 6

  /bionic/libc/kernel/uapi/linux/netfilter_ipv4/
ipt_ttl.h 32 __u8 ttl; member in struct:ipt_ttl_info
ipt_TTL.h 32 __u8 ttl; member in struct:ipt_TTL_info
  /development/ndk/platforms/android-3/include/linux/netfilter_ipv4/
ipt_TTL.h 25 u_int8_t ttl; member in struct:ipt_TTL_info
  /development/ndk/platforms/android-L/include/linux/netfilter_ipv4/
ipt_ttl.h 32 __u8 ttl; member in struct:ipt_ttl_info
ipt_TTL.h 32 __u8 ttl; member in struct:ipt_TTL_info
  /external/iptables/include/linux/netfilter_ipv4/
ipt_ttl.h 1 /* IP tables module for matching the value of the TTL
19 __u8 ttl; member in struct:ipt_ttl_info
ipt_TTL.h 0 /* TTL modification module for IP tables
19 __u8 ttl; member in struct:ipt_TTL_info
  /external/kernel-headers/original/uapi/linux/netfilter_ipv4/
ipt_ttl.h 1 /* IP tables module for matching the value of the TTL
19 __u8 ttl; member in struct:ipt_ttl_info
ipt_TTL.h 0 /* TTL modification module for IP tables
19 __u8 ttl; member in struct:ipt_TTL_info
  /external/chromium_org/cloud_print/gcp20/prototype/
dns_response_builder.h 31 uint32 ttl; member in struct:DnsResponseRecord
46 uint32 ttl,
51 uint32 ttl,
58 uint32 ttl,
63 uint32 ttl,
68 uint32 ttl,
79 uint32 ttl,
dns_response_builder.cc 20 DnsResponseRecord::DnsResponseRecord() : type(0), klass(0), ttl(0) {
41 uint32 ttl,
48 AddResponse(service_type, net::dns_protocol::kTypePTR, ttl, rdata, answer);
52 uint32 ttl,
73 AddResponse(service_name, net::dns_protocol::kTypeSRV, ttl,
78 uint32 ttl,
87 AddResponse(service_domain_name, net::dns_protocol::kTypeA, ttl,
92 uint32 ttl,
101 AddResponse(service_domain_name, net::dns_protocol::kTypeAAAA, ttl,
106 uint32 ttl,
    [all...]
command_line_reader.cc 34 uint32 ttl = 0; local
38 &ttl)) {
39 ttl = default_value;
42 VLOG(1) << "TTL for announcements: " << ttl;
43 return ttl;
  /external/android-clat/
icmp.c 28 * Guesses the number of hops a received packet has traversed based on its TTL.
29 * ttl - the ttl of the received packet.
31 uint8_t icmp_guess_ttl(uint8_t ttl) {
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;
    [all...]
icmp.h 24 // Guesses the number of hops a received packet has traversed based on its TTL.
25 uint8_t icmp_guess_ttl(uint8_t ttl);
  /external/chromium_org/net/dns/
host_cache.cc 18 base::TimeDelta ttl)
21 ttl(ttl) {
22 DCHECK(ttl >= base::TimeDelta());
28 ttl(base::TimeDelta::FromSeconds(-1)) {
55 base::TimeDelta ttl) {
60 entries_.Put(key, entry, now, now + ttl);
record_parsed.h 32 uint32 ttl() const { return ttl_; } function in class:net::RecordParsed
42 // Check if two records have the same data. Ignores time_created and ttl.
49 uint32 ttl, scoped_ptr<const RecordRdata> rdata,
host_cache.h 27 Entry(int error, const AddressList& addrlist, base::TimeDelta ttl);
28 // Use when |ttl| is unknown.
32 bool has_ttl() const { return ttl >= base::TimeDelta(); }
37 // TTL obtained from the nameserver. Negative if unknown.
38 base::TimeDelta ttl; member in struct:net::HostCache::Entry
87 // |ttl| is the "time to live".
91 base::TimeDelta ttl);
  /external/jmdns/src/javax/jmdns/impl/
HostInfo.java 198 DNSRecord.Address getDNSAddressRecord(DNSRecordType type, boolean unique, int ttl) {
201 return this.getDNS4AddressRecord(unique, ttl);
204 return this.getDNS6AddressRecord(unique, ttl);
210 private DNSRecord.Address getDNS4AddressRecord(boolean unique, int ttl) {
212 return new DNSRecord.IPv4Address(this.getName(), DNSRecordClass.CLASS_IN, unique, ttl, this.getInetAddress());
217 private DNSRecord.Address getDNS6AddressRecord(boolean unique, int ttl) {
219 return new DNSRecord.IPv6Address(this.getName(), DNSRecordClass.CLASS_IN, unique, ttl, this.getInetAddress());
224 DNSRecord.Pointer getDNSReverseAddressRecord(DNSRecordType type, boolean unique, int ttl) {
227 return this.getDNS4ReverseAddressRecord(unique, ttl);
230 return this.getDNS6ReverseAddressRecord(unique, ttl);
    [all...]
  /external/chromium_org/third_party/libevent/
evdns.h 91 * void callback(int result, char type, int count, int ttl,
99 * DNS_IPv4_A, count will be the number of IP addresses, ttl is the time
208 * - ttl is the number of seconds the resolution may be cached for.
211 typedef void (*evdns_callback_type) (int result, char type, int count, int ttl, void *addresses, void *arg);
513 int evdns_server_request_add_reply(struct evdns_server_request *req, int section, const char *name, int type, int dns_class, int ttl, int datalen, int is_name, const char *data);
514 int evdns_server_request_add_a_reply(struct evdns_server_request *req, const char *name, int n, void *addrs, int ttl);
515 int evdns_server_request_add_aaaa_reply(struct evdns_server_request *req, const char *name, int n, void *addrs, int ttl);
516 int evdns_server_request_add_ptr_reply(struct evdns_server_request *req, struct in_addr *in, const char *inaddr_name, const char *hostname, int ttl);
517 int evdns_server_request_add_cname_reply(struct evdns_server_request *req, const char *name, const char *cname, int ttl);
  /external/iptables/extensions/
libipt_ttl.c 1 /* Shared library add-on to iptables to add TTL matching support
22 "ttl match options:\n"
23 "[!] --ttl-eq value Match time to live value\n"
24 " --ttl-lt value Match TTL < value\n"
25 " --ttl-gt value Match TTL > value\n");
50 "TTL match: You must specify one of "
51 "`--ttl-eq', `--ttl-lt', `--ttl-gt")
    [all...]
libipt_TTL.c 1 /* Shared library add-on to iptables for the TTL target
22 {.name = "ttl-set", .type = XTTYPE_UINT8, .id = O_TTL_SET,
23 .excl = F_ANY, .flags = XTOPT_PUT, XTOPT_POINTER(s, ttl)},
24 {.name = "ttl-dec", .type = XTTYPE_UINT8, .id = O_TTL_DEC,
25 .excl = F_ANY, .flags = XTOPT_PUT, XTOPT_POINTER(s, ttl),
27 {.name = "ttl-inc", .type = XTTYPE_UINT8, .id = O_TTL_INC,
28 .excl = F_ANY, .flags = XTOPT_PUT, XTOPT_POINTER(s, ttl),
37 "TTL target options\n"
38 " --ttl-set value Set TTL to <value 0-255>\n
    [all...]
  /external/iputils/
tracepath.c 63 __u32 ttl; member in struct:probehdr
89 int recverr(int fd, int ttl)
141 if (rcvbuf.ttl == 0 || rcvbuf.tv.tv_sec == 0) {
144 sndhops = rcvbuf.ttl;
165 printf("%2d?: %*s ", ttl, -(HOST_COLUMN_SIZE - 1), "[LOCALHOST]");
177 printf("%2d?: ", ttl);
216 hops_to = sndhops<0 ? ttl : sndhops;
235 else if (sndhops<0 && rethops != ttl)
258 int probe_ttl(int fd, int ttl)
268 hdr->ttl = ttl
311 int ttl; local
    [all...]
tracepath6.c 76 __u32 ttl; member in struct:probehdr
102 int recverr(int fd, int ttl)
164 if (rcvbuf.ttl == 0 || rcvbuf.tv.tv_sec == 0)
167 sndhops = rcvbuf.ttl;
207 printf("%2d?: %-32s ", ttl, "[LOCALHOST]");
217 printf("%2d?: ", ttl);
275 hops_to = sndhops<0 ? ttl : sndhops;
297 else if (sndhops<0 && rethops != ttl)
320 int probe_ttl(int fd, int ttl)
331 hdr->ttl = ttl
380 int ttl; local
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
plresolv.h 73 PRHostEnt *hostentry, PRIntervalTime *ttl);
78 PRHostEnt *hostentry, PRIntervalTime *ttl);
  /bionic/libc/dns/nameser/
ns_ttl.c 104 u_long ttl, tmp; local
107 ttl = 0;
132 ttl += tmp;
141 ttl += tmp;
144 *dst = ttl;

Completed in 674 milliseconds

1 2 3 4 5 6