wireguard-go/src/tun.go

16 lines
483 B
Go
Raw Normal View History

package main
/*
* The default MTU of the new device must be 1420
*/
const DefaultMTU = 1420
type TUNDevice interface {
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)
2017-08-04 14:15:53 +00:00
IsUp() (bool, error) // is the interface up?
MTU() (int, error) // returns the MTU of the device
Name() string // returns the current name
}