aboutsummaryrefslogtreecommitdiffstats
path: root/tun.go
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2018-02-11 23:26:54 +0100
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2018-02-11 23:26:54 +0100
commit6cba91999c8b43dc979e707f7bbbaabf786f68bd (patch)
treec79cff69af5c64859b51cc83f9f05196b922e449 /tun.go
parentAdded missing mutex acquisition (diff)
downloadwireguard-go-6cba91999c8b43dc979e707f7bbbaabf786f68bd.tar.xz
wireguard-go-6cba91999c8b43dc979e707f7bbbaabf786f68bd.zip
TUN status hack was causing spam during shutdown
Diffstat (limited to '')
-rw-r--r--tun.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/tun.go b/tun.go
index 6259f33..7b044ad 100644
--- a/tun.go
+++ b/tun.go
@@ -26,6 +26,7 @@ type TUNDevice interface {
}
func (device *Device) RoutineTUNEventReader() {
+ setUp := false
logInfo := device.log.Info
logError := device.log.Error
@@ -45,13 +46,15 @@ func (device *Device) RoutineTUNEventReader() {
}
}
- if event&TUNEventUp != 0 && !device.isUp.Get() {
+ if event&TUNEventUp != 0 && !setUp {
logInfo.Println("Interface set up")
+ setUp = true
device.Up()
}
- if event&TUNEventDown != 0 && device.isUp.Get() {
+ if event&TUNEventDown != 0 && setUp {
logInfo.Println("Interface set down")
+ setUp = false
device.Down()
}
}