Block forever
This commit is contained in:
parent
74936edbdd
commit
9be67557c3
1 changed files with 2 additions and 2 deletions
4
main.go
4
main.go
|
@ -32,7 +32,6 @@ import (
|
|||
"regexp"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"gitea.drjosh.dev/josh/jrouter/aurp"
|
||||
"gitea.drjosh.dev/josh/jrouter/router"
|
||||
|
@ -118,7 +117,8 @@ func main() {
|
|||
myHWAddr = ethernet.Addr(netHWAddr)
|
||||
}
|
||||
|
||||
pcapHandle, err := pcap.OpenLive(cfg.EtherTalk.Device, 4096, true, 100*time.Millisecond)
|
||||
//pcapHandle, err := pcap.OpenLive(cfg.EtherTalk.Device, 4096, true, 100*time.Millisecond)
|
||||
pcapHandle, err := pcap.OpenLive(cfg.EtherTalk.Device, 4096, true, pcap.BlockForever)
|
||||
if err != nil {
|
||||
log.Fatalf("Couldn't open %q for packet capture: %v", cfg.EtherTalk.Device, err)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue