mirror of
https://github.com/netbirdio/netbird.git
synced 2025-03-04 01:41:17 +01:00
20 lines
505 B
Go
20 lines
505 B
Go
package iface
|
|
|
|
import (
|
|
wgdevice "golang.zx2c4.com/wireguard/device"
|
|
|
|
"github.com/netbirdio/netbird/client/iface/bind"
|
|
"github.com/netbirdio/netbird/client/iface/device"
|
|
)
|
|
|
|
type WGTunDevice interface {
|
|
Create(routes []string, dns string, searchDomains []string) (device.WGConfigurer, error)
|
|
Up() (*bind.UniversalUDPMuxDefault, error)
|
|
UpdateAddr(address WGAddress) error
|
|
WgAddress() WGAddress
|
|
DeviceName() string
|
|
Close() error
|
|
FilteredDevice() *device.FilteredDevice
|
|
Device() *wgdevice.Device
|
|
}
|