Produces packets ready to be processed by the next plugin in the chain.
(self)
| 152 | self._packet_fragments = defaultdict(dict) |
| 153 | |
| 154 | def produce_packets(self) -> Iterable["Packet"]: |
| 155 | """ |
| 156 | Produces packets ready to be processed by the next plugin in the chain. |
| 157 | """ |
| 158 | while self._packet_queue: |
| 159 | yield self._packet_queue.pop(0) |
| 160 | |
| 161 | def flush(self): |
| 162 | """ |
no outgoing calls
no test coverage detected