Closed GoogleCodeExporter closed 9 years ago
Try open with binary
f = open('test.pcap','rb')
pcap = dpkt.pcap.Reader(f)
for ts, buf in pcap:
print ts, len(buf)
Original comment by vinifa...@gmail.com
on 12 Nov 2014 at 6:46
Could you please provide more details like the operating System and dpkt
version?
Also, please upload the test pcap file that fails in comparison with wireshark.
Original comment by kbandla@in2void.com
on 25 Dec 2014 at 4:17
Please see the following issues:
https://code.google.com/p/dpkt/issues/detail?id=129
https://code.google.com/p/dpkt/issues/detail?id=27
If the timestamp values are not matching up with Wireshark, it is because of
the way you are printing the value in python. See issue #129 for more details.
Original comment by kbandla@in2void.com
on 25 Dec 2014 at 5:58
Original issue reported on code.google.com by
itayr...@gmail.com
on 9 Nov 2014 at 1:30