Files
wireguard-go/src/tun.go
T

9 lines
119 B
Go
Raw Normal View History

2017-06-04 21:48:15 +02:00
package main
type TUN interface {
Read([]byte) (int, error)
Write([]byte) (int, error)
Name() string
MTU() uint
}