Same than load() but for reloads. By default calls load
(self)
| 46 | raise NotImplementedError |
| 47 | |
| 48 | def reload(self): |
| 49 | # type: () -> Dict[str, NetworkInterface] |
| 50 | """Same than load() but for reloads. By default calls load""" |
| 51 | return self.load() |
| 52 | |
| 53 | def _l2socket(self, dev): |
| 54 | # type: (NetworkInterface) -> Type[scapy.supersocket.SuperSocket] |
no test coverage detected