(self, count=-1)
| 1603 | raise StopIteration |
| 1604 | |
| 1605 | def read_all(self, count=-1): |
| 1606 | # type: (int) -> PacketList |
| 1607 | res = self._read_all(count) |
| 1608 | from scapy import plist |
| 1609 | return plist.PacketList(res, name=os.path.basename(self.filename)) |
| 1610 | |
| 1611 | |
| 1612 | class RawPcapNgReader(RawPcapReader): |