9 lines
124 B
Go
9 lines
124 B
Go
package main
|
|
|
|
type TUNDevice interface {
|
|
Read([]byte) (int, error)
|
|
Write([]byte) (int, error)
|
|
Name() string
|
|
MTU() int
|
|
}
|