mirror of
https://github.com/amnezia-vpn/amneziawg-go.git
synced 2025-04-16 14:06:54 +02:00
8 lines
124 B
Go
8 lines
124 B
Go
package main
|
|
|
|
type TUNDevice interface {
|
|
Read([]byte) (int, error)
|
|
Write([]byte) (int, error)
|
|
Name() string
|
|
MTU() int
|
|
}
|