From 86707cbc88fbad58481b400eaf12fa75c78f9855 Mon Sep 17 00:00:00 2001 From: Mathias Hall-Andersen Date: Tue, 11 Jul 2017 22:48:58 +0200 Subject: Fixed MTU method for linux TUN interface Updated the TUN interface Added the "MTU" method for the linux implementation of the TUN interface --- src/tun.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/tun.go') 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 } -- cgit v1.2.3