You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix nfds error in select statement
From man page for select "nfds should be set to the highest-numbered
file descriptor in any of the three sets, plus 1". This was causing
one of our apps to never capture packets as the fd returned by
pcap_get_selectable_fd was 8 and then never checked.
Add support for numerous libpcap extras.
Adds support for:
* pcap_setdirection
* pcap_set_buffer_size
* pcap_set_immediate_mode
Many thanks to Matthias Radestock for working on this.