Files
wireguard-go/src/tun.go
T

9 lines
124 B
Go
Raw Normal View History

2017-06-04 21:48:15 +02:00
package main
2017-06-28 23:45:45 +02:00
type TUNDevice interface {
2017-06-04 21:48:15 +02:00
Read([]byte) (int, error)
Write([]byte) (int, error)
Name() string
2017-07-01 23:29:22 +02:00
MTU() int
2017-06-04 21:48:15 +02:00
}