mirror of
https://github.com/netbirdio/netbird.git
synced 2025-01-12 17:08:36 +01:00
4616bc5258
Support client route management feature on Android
8 lines
226 B
Go
8 lines
226 B
Go
package iface
|
|
|
|
// TunAdapter is an interface for create tun device from externel service
|
|
type TunAdapter interface {
|
|
ConfigureInterface(address string, mtu int, routes string) (int, error)
|
|
UpdateAddr(address string) error
|
|
}
|