MCPcopy Create free account
hub / github.com/secdev/scapy / __init__

Method __init__

scapy/route6.py:41–47  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

39class Route6:
40
41 def __init__(self):
42 # type: () -> None
43 self.routes = [] # type: List[Tuple[str, int, str, str, List[str], int]] # noqa: E501
44 self.ipv6_ifaces = set() # type: Set[Union[str, NetworkInterface]]
45 self.invalidate_cache()
46 if conf.route6_autoload:
47 self.resync()
48
49 def invalidate_cache(self):
50 # type: () -> None

Callers

nothing calls this directly

Calls 2

invalidate_cacheMethod · 0.95
resyncMethod · 0.95

Tested by

no test coverage detected