Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug in writepkt of pcap module #31

Closed
kbandla opened this issue Jun 4, 2015 · 1 comment
Closed

Bug in writepkt of pcap module #31

kbandla opened this issue Jun 4, 2015 · 1 comment

Comments

@kbandla
Copy link
Owner

kbandla commented Jun 4, 2015

From manuel.c...@gmail.com on March 20, 2007 05:21:22

replace in line 81

tv_usec=int((int(ts) - float(ts)) * 1000000.0)

with

tv_usec=int((float(ts) - int(ts)) * 1000000.0)

tnx
Manuel.

Original issue: http://code.google.com/p/dpkt/issues/detail?id=3

@kbandla
Copy link
Owner Author

kbandla commented Jun 4, 2015

From dugsong on March 20, 2007 02:32:51

this is already fixed in the current version of dpkt in Subversion. i will cut a new
release soon that incorporates it.

thank you for the bug report!

Status: Fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant