(self)
| 166 | return hash(self.network_name) |
| 167 | |
| 168 | def is_valid(self): |
| 169 | # type: () -> bool |
| 170 | if self.dummy: |
| 171 | return False |
| 172 | return self.provider._is_valid(self) |
| 173 | |
| 174 | def l2socket(self): |
| 175 | # type: () -> Type[scapy.supersocket.SuperSocket] |
no test coverage detected