diff options
author | Mathias Hall-Andersen <mathias@hall-andersen.dk> | 2017-07-07 13:47:09 +0200 |
---|---|---|
committer | Mathias Hall-Andersen <mathias@hall-andersen.dk> | 2017-07-07 13:47:09 +0200 |
commit | ed31e757392d1f8a907250b19c64b59451c440db (patch) | |
tree | f4279f1555bbfadcace402332b75f01c5c6935f4 /src/tun_linux.go | |
parent | 70179f8c8c2eeb39c9a3666012481a25ce39b338 (diff) |
Fixed cookie reply processing bug
Diffstat (limited to 'src/tun_linux.go')
-rw-r--r-- | src/tun_linux.go | 2 |
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 } |