Removing pcap options for AF_PACKET support.

Turns out that's not working. Addresses BIT-1363.
This commit is contained in:
Robin Sommer 2015-10-23 14:29:58 -07:00
parent cf4fcf5751
commit a6b884e764
8 changed files with 27 additions and 48 deletions

View file

@ -3707,19 +3707,8 @@ export {
const snaplen = 8192 &redef;
## Number of Mbytes to provide as buffer space when capturing from live
## interfaces.
## interfaces.
const bufsize = 128 &redef;
## Toggle whether to do packet fanout (Linux-only).
const packet_fanout_enable = F &redef;
## If packet fanout is enabled, the id to sue for it. This should be shared amongst
## worker processes processing the same socket.
const packet_fanout_id = 0 &redef;
## If packet fanout is enabled, whether packets are to be defragmented before
## fanout is applied.
const packet_fanout_defrag = T &redef;
} # end export
module GLOBAL;