mirror of
https://github.com/netbirdio/netbird.git
synced 2025-03-13 14:18:47 +01:00
25 lines
543 B
Go
25 lines
543 B
Go
//go:build !android
|
|
|
|
package iface
|
|
|
|
import (
|
|
"golang.zx2c4.com/wireguard/tun/netstack"
|
|
|
|
wgdevice "golang.zx2c4.com/wireguard/device"
|
|
|
|
"github.com/netbirdio/netbird/client/iface/bind"
|
|
"github.com/netbirdio/netbird/client/iface/device"
|
|
)
|
|
|
|
type WGTunDevice interface {
|
|
Create() (device.WGConfigurer, error)
|
|
Up() (*bind.UniversalUDPMuxDefault, error)
|
|
UpdateAddr(address WGAddress) error
|
|
WgAddress() WGAddress
|
|
DeviceName() string
|
|
Close() error
|
|
FilteredDevice() *device.FilteredDevice
|
|
Device() *wgdevice.Device
|
|
GetNet() *netstack.Net
|
|
}
|