mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-26 18:13:40 +01:00
27 lines
469 B
Go
27 lines
469 B
Go
package dns
|
|
|
|
import "net/netip"
|
|
|
|
type androidHostManager struct {
|
|
}
|
|
|
|
func newHostManager() (hostManager, error) {
|
|
return &androidHostManager{}, nil
|
|
}
|
|
|
|
func (a androidHostManager) applyDNSConfig(config HostDNSConfig) error {
|
|
return nil
|
|
}
|
|
|
|
func (a androidHostManager) restoreHostDNS() error {
|
|
return nil
|
|
}
|
|
|
|
func (a androidHostManager) supportCustomPort() bool {
|
|
return false
|
|
}
|
|
|
|
func (a androidHostManager) restoreUncleanShutdownDNS(*netip.Addr) error {
|
|
return nil
|
|
}
|