summaryrefslogtreecommitdiff
path: root/src/tun.go
blob: 60732c442101c89edd5f39ad994554a5d2aba16a (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() int
}