aboutsummaryrefslogtreecommitdiff
path: root/src/tun.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/tun.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tun.go b/src/tun.go
index 5bdac0e..215022c 100644
--- a/src/tun.go
+++ b/src/tun.go
@@ -47,17 +47,19 @@ func (device *Device) RoutineTUNEventReader() {
if event&TUNEventUp != 0 {
if !device.tun.isUp.Get() {
+ // begin listening for incomming datagrams
logInfo.Println("Interface set up")
device.tun.isUp.Set(true)
- UpdateUDPListener(device)
+ updateBind(device)
}
}
if event&TUNEventDown != 0 {
if device.tun.isUp.Get() {
+ // stop listening for incomming datagrams
logInfo.Println("Interface set down")
device.tun.isUp.Set(false)
- CloseUDPListener(device)
+ closeBind(device)
}
}
}