This commit is contained in:
evilsocket 2018-01-13 13:46:49 +01:00
parent 90c1550a19
commit ce3de2e0ad
2 changed files with 8 additions and 8 deletions

View file

@ -23,7 +23,7 @@ func NewQueue(iface string) (*Queue, error) {
active: true,
}
q.handle, err = pcap.OpenLive(iface, 65536, true, pcap.BlockForever)
q.handle, err = pcap.OpenLive(iface, 1024, true, pcap.BlockForever)
if err != nil {
return nil, err
}