aboutsummaryrefslogtreecommitdiff
path: root/src/tun.go
blob: 594754a561df36e35007107e5694a3f681e0ddf1 (plain) (blame)
1
2
3
4
5
6
7
8
package main

type TUNDevice interface {
	Read([]byte) (int, error)
	Write([]byte) (int, error)
	Name() string
	MTU() uint
}