Giter Club home page Giter Club logo

Comments (4)

mfontanini avatar mfontanini commented on June 6, 2024

I think setting timeouts on pcap doesn't work at all on Linux. You can always get the fd and then do a select over it, which allows you to set a timeout on it. If you're using Windows, you can do the same by using pcap_getevent.

from libtins.

fabiomargarido avatar fabiomargarido commented on June 6, 2024

Calling config.set_timeout() with different values did make a difference in my Ubuntu 15.04 environment.

I could use get_fd() and select() on it, but not together with sniff_loop(). What I had in mind was something along the lines of:

SnifferConfiguration config;
config.set_promisc_mode(true);
config.set_timeout(0);
config.set_reception_timeout(2000);

Sniffer sniffer("eth0", config);

do {
    // returns every two seconds
    keep_sniffing = sniffer->sniff_loop(make_sniffer_handler(handler, &Handler::handle));
} while (keep_running && keep_sniffing);

from libtins.

mfontanini avatar mfontanini commented on June 6, 2024

Well, you can always use Sniffer::next_packet instead of sniff_loop. That way you could get packets until 2 seconds pass, while using select to timeout.

from libtins.

mfontanini avatar mfontanini commented on June 6, 2024

Closing this as you should be able to have this behavior by using timeouts and/or select + Sniffer::get_fd.

from libtins.

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.