mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 15:26:40 +00:00
15 lines
372 B
Go
15 lines
372 B
Go
//go:build android
|
|
|
|
package device
|
|
|
|
import "fmt"
|
|
|
|
func (t *TunNetstackDevice) Create(routes []string, dns string, searchDomains []string) (WGConfigurer, error) {
|
|
return t.create()
|
|
}
|
|
|
|
func (t *TunNetstackDevice) RenewTun(fd int) error {
|
|
// Doesn't make sense in Android for Netstack.
|
|
return fmt.Errorf("this function has not been implemented in Netstack for Android")
|
|
}
|