Files
netbird/client/internal/dns/host_android.go
Pascal Fischer 7f958e9338 trying to add DNS
2023-10-09 14:58:48 +02:00

21 lines
378 B
Go

package dns
type androidHostManager struct {
}
func newHostManager(wgInterface WGIface) (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
}