On Feb 14, 2014, at 4:42 AM, "MARTIN, Jean-loic (FR - SX)" 
<[email protected]> wrote:

> Is there a special configuration to call the packet handler function directly 
> when a packet is received without wait the timeout ?

Use pcap_open() and open with the PCAP_OPENFLAG_MAX_RESPONSIVENESS flag:

        
http://www.winpcap.org/docs/docs_412/html/group__remote__open__flags.html

The libpcap equivalent is to use pcap_create() and pcap_activate() and, between 
the pcap_create() and pcap_activate() calls, call

        pcap_set_immediate_mode(handle, 1);

in libpcap 1.5 and later (or to set immediate mode in a platform-dependent 
fashion in previous releases).
_______________________________________________
Winpcap-users mailing list
[email protected]
https://www.winpcap.org/mailman/listinfo/winpcap-users

Reply via email to