Home
last modified time | relevance | path

Searched refs:ipv6_enabled (Results 1 – 6 of 6) sorted by relevance

/external/scapy/scapy/layers/
Dpflog.py14 if conf.ipv6_enabled:
57 if conf.ipv6_enabled:
Dinet.py427 if conf.ipv6_enabled \
533 …elif conf.ipv6_enabled and isinstance(self.underlayer, scapy.layers.inet6.IPv6) or isinstance(self…
577 elif conf.ipv6_enabled and isinstance(self.underlayer, scapy.layers.inet6.IPv6):
1300 r = r.getlayer(IP) or (conf.ipv6_enabled and r[scapy.layers.inet6.IPv6]) or r
1301 s = s.getlayer(IP) or (conf.ipv6_enabled and s[scapy.layers.inet6.IPv6]) or s
1312 ttl = conf.ipv6_enabled and scapy.layers.inet6.IPv6 in s and s.hlim or s.ttl
1313 …if not (ICMP in r and r[ICMP].type == 11) and not (conf.ipv6_enabled and scapy.layers.inet6.IPv6 i…
1735 if conf.ipv6_enabled:
/external/scapy/scapy/
Dall.py26 if conf.ipv6_enabled:
Dconfig.py436 ipv6_enabled = socket.has_ipv6 variable in Conf
461 if not Conf.ipv6_enabled:
/external/webrtc/webrtc/base/
Dnetwork.cc206 if (ipv6_enabled()) { in GetAnyAddressNetworks()
418 if (cursor->ifa_addr->sa_family == AF_INET6 && !ipv6_enabled()) { in ConvertIfAddrs()
579 if (ipv6_enabled()) { in CreateNetworks()
Dnetwork.h137 bool ipv6_enabled() const { return ipv6_enabled_; } in ipv6_enabled() function