Coder Social home page Coder Social logo

PCAP Nano Support about dpkt HOT 1 CLOSED

kbandla avatar kbandla commented on September 28, 2024
PCAP Nano Support

from dpkt.

Comments (1)

kbandla avatar kbandla commented on September 28, 2024

From [email protected] on December 24, 2014 23:00:31

I am assuming that you are doing something like this:
for ts, buf in pcap:
print ts

And then you observe the timestamp to be "1408173480.93" instead
of "1408173480.936543", as shown in wireshark. This is because the print
function in python limits float to two decimal places.

Example:

x = 1258494066.119061
x
1258494066.119061
print x
1258494066.12

If you really need to print the full value, use format:

"{0:.6f}".format(x)
'1258494066.119061'

If you have a nanosecond capture file, the place you will need to make the change is in the iter() function of the pcap.py module. Instead of dividing hdr.tv_usec by 1000000.0, you will need to divide it by 1000000000.0

Status: Duplicate
Owner: [email protected]
Mergedinto: 129

from dpkt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.