aboutsummaryrefslogtreecommitdiff
path: root/src/tun_linux.go
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2017-07-07 13:47:09 +0200
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2017-07-07 13:47:09 +0200
commited31e757392d1f8a907250b19c64b59451c440db (patch)
treef4279f1555bbfadcace402332b75f01c5c6935f4 /src/tun_linux.go
parent70179f8c8c2eeb39c9a3666012481a25ce39b338 (diff)
downloadwireguard-go-ed31e757392d1f8a907250b19c64b59451c440db.tar.gz
wireguard-go-ed31e757392d1f8a907250b19c64b59451c440db.zip
Fixed cookie reply processing bug
Diffstat (limited to 'src/tun_linux.go')
-rw-r--r--src/tun_linux.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tun_linux.go b/src/tun_linux.go
index a0bff81..d16a966 100644
--- a/src/tun_linux.go
+++ b/src/tun_linux.go
@@ -74,6 +74,6 @@ func CreateTUN(name string) (TUNDevice, error) {
return &NativeTun{
fd: fd,
name: newName,
- mtu: 1500, // TODO: FIX
+ mtu: 0,
}, nil
}