mirror of
https://github.com/netbirdio/netbird.git
synced 2025-02-16 10:20:09 +01:00
Support search domain on Android - pass list of search domains to Android SDK - throw notification in case of search domain changes
13 lines
232 B
Go
13 lines
232 B
Go
package iface
|
|
|
|
type MobileIFaceArguments struct {
|
|
Routes []string
|
|
Dns string
|
|
SearchDomains []string
|
|
}
|
|
|
|
// NetInterface represents a generic network tunnel interface
|
|
type NetInterface interface {
|
|
Close() error
|
|
}
|