(self)
| 39 | class 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 |
nothing calls this directly
no test coverage detected