aboutsummaryrefslogtreecommitdiffstats
path: root/src/conn.go
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2017-11-29 18:46:31 +0100
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2017-11-29 18:46:31 +0100
commit471f7ff08e897a6b4f2779e10d28aeb0a5b9e0e4 (patch)
tree7a1e4381ec8d3dc906efd4ddf82ee5f75da9a28a /src/conn.go
parentBetter naming of bind helpers (diff)
downloadwireguard-go-471f7ff08e897a6b4f2779e10d28aeb0a5b9e0e4.tar.xz
wireguard-go-471f7ff08e897a6b4f2779e10d28aeb0a5b9e0e4.zip
Added cross namespace TUN status detection
Diffstat (limited to 'src/conn.go')
-rw-r--r--src/conn.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conn.go b/src/conn.go
index b17ac70..6d292d3 100644
--- a/src/conn.go
+++ b/src/conn.go
@@ -114,8 +114,8 @@ func updateBind(device *Device) error {
// decrease waitgroup to 0
- go device.RoutineReceiveIncomming(ipv4.Version, netc.bind)
- go device.RoutineReceiveIncomming(ipv6.Version, netc.bind)
+ go device.RoutineReceiveIncoming(ipv4.Version, netc.bind)
+ go device.RoutineReceiveIncoming(ipv6.Version, netc.bind)
device.log.Debug.Println("UDP bind has been updated")
}