Starts AsyncSniffer in async mode
(self)
| 1396 | self.results = PacketList(lst, "Sniffed") |
| 1397 | |
| 1398 | def start(self): |
| 1399 | # type: () -> None |
| 1400 | """Starts AsyncSniffer in async mode""" |
| 1401 | self._setup_thread() |
| 1402 | if self.thread: |
| 1403 | self.thread.start() |
| 1404 | |
| 1405 | def stop(self, join=True): |
| 1406 | # type: (bool) -> Optional[PacketList] |