mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 16:13:31 +01:00
e2f27502e4
Support search domain on Android - pass list of search domains to Android SDK - throw notification in case of search domain changes
8 lines
260 B
Go
8 lines
260 B
Go
package iface
|
|
|
|
// TunAdapter is an interface for create tun device from externel service
|
|
type TunAdapter interface {
|
|
ConfigureInterface(address string, mtu int, dns string, searchDomains string, routes string) (int, error)
|
|
UpdateAddr(address string) error
|
|
}
|