diff options
Diffstat (limited to 'pkg/ipstack/ipstack.go')
-rw-r--r-- | pkg/ipstack/ipstack.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/ipstack/ipstack.go b/pkg/ipstack/ipstack.go index 59afbcd..8a451f8 100644 --- a/pkg/ipstack/ipstack.go +++ b/pkg/ipstack/ipstack.go @@ -186,9 +186,9 @@ func InterfaceListenerRoutine(i *Interface) { if closed { // stop this go routine if channel is closed return } - if !isUp { // don't call the listeners if interface is down - continue - } + //if !isUp { // don't call the listeners if interface is down + // continue + //} // TODO: remove these "training wheels" time.Sleep(1 * time.Millisecond) err := RecvIP(i, &isUp) |