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

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