mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-26 01:53:42 +01:00
8 lines
211 B
Go
8 lines
211 B
Go
|
package iface
|
||
|
|
||
|
// TunAdapter is an interface for create tun device from externel service
|
||
|
type TunAdapter interface {
|
||
|
ConfigureInterface(address string, mtu int) (int, error)
|
||
|
UpdateAddr(address string) error
|
||
|
}
|