mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
e2f27502e4
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
|
|
}
|