Make a pcapng file, not pcap

This commit is contained in:
Byron Lathi
2024-09-13 07:41:17 -07:00
parent 8455d5b56d
commit b815af3ff1
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@@ -34,4 +34,5 @@ __pycache__
*.vcd
*.fst.*
results.xml
html
html
*.pcapng

View File

@@ -57,7 +57,7 @@ def ip_to_hex(ip: str) -> int:
@cocotb.test()
async def test_simple(dut):
pktdump = PcapWriter("tcp.pcap", append=True, sync=True)
pktdump = PcapWriter("tcp.pcapng", append=True, sync=True)
tb = TB(dut)