When finished with handling a pcap file, calling this will clear all caches in preparation for next file.
(self)
| 167 | pass |
| 168 | |
| 169 | def purge(self): |
| 170 | """ |
| 171 | When finished with handling a pcap file, calling this will clear all |
| 172 | caches in preparation for next file. |
| 173 | """ |
| 174 | self._packet_queue = [] |
| 175 | self._packet_fragments = defaultdict(dict) |
| 176 | |
| 177 | def write(self, *args, **kwargs): |
| 178 | """ |
no outgoing calls
no test coverage detected