Closed GoogleCodeExporter closed 9 years ago
Thanks - committed, and added you to AUTHORS :-)
Original comment by dugsong
on 6 Jan 2011 at 4:12
Original comment by dugsong
on 6 Jan 2011 at 4:12
[deleted comment]
Yeah. It works on snoop file.
Original comment by xuedipia...@gmail.com
on 21 Jul 2011 at 1:03
I noticed __init__.py does not include a line "import snoop". Suppose it is
added, you can read packets from a snoop file in the same way as pcap:
from dpkt import ethernet, snoop
f = file("packet.snoop", "rb")
for ts, buf in snoop.Reader(f):
eth = ethernet.Ethernet(buf)
Original comment by keisuke....@gmail.com
on 21 Jul 2011 at 4:36
Thank you! It works fine!!!
Original comment by vinifa...@gmail.com
on 10 Nov 2014 at 2:09
Original issue reported on code.google.com by
keisuke....@gmail.com
on 29 Sep 2010 at 5:46Attachments: