aboutsummaryrefslogtreecommitdiff
path: root/src/tun.go
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2017-07-11 22:48:58 +0200
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2017-07-11 22:48:58 +0200
commit86707cbc88fbad58481b400eaf12fa75c78f9855 (patch)
treece3b662db2da9ad78f09ed96cb2a93c2f0e6bfa4 /src/tun.go
parentc273078376d5aa394e871e7436b8e770b0c3f4a0 (diff)
downloadwireguard-go-86707cbc88fbad58481b400eaf12fa75c78f9855.tar.gz
wireguard-go-86707cbc88fbad58481b400eaf12fa75c78f9855.zip
Fixed MTU method for linux TUN interface
Updated the TUN interface Added the "MTU" method for the linux implementation of the TUN interface
Diffstat (limited to 'src/tun.go')
-rw-r--r--src/tun.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tun.go b/src/tun.go
index 60732c4..85735a6 100644
--- a/src/tun.go
+++ b/src/tun.go
@@ -1,8 +1,8 @@
package main
type TUNDevice interface {
- Read([]byte) (int, error)
- Write([]byte) (int, error)
- Name() string
- MTU() int
+ Read([]byte) (int, error) // read a packet from the device (without any additional headers)
+ Write([]byte) (int, error) // writes a packet to the device (without any additional headers)
+ MTU() (int, error) // returns the MTU of the device
+ Name() string // returns the current name
}