mirror of
https://github.com/tailscale/tailscale.git
synced 2025-05-21 01:38:32 +00:00

Android is Linux, but doesn't use Linux DNS managers (or D-Bus). Updates #12614 Change-Id: I487802ac74a259cd5d2480ac26f7faa17ca8d1c3 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
11 lines
254 B
Go
11 lines
254 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build !linux && !android && !ios
|
|
|
|
package dns
|
|
|
|
func (m *directManager) runFileWatcher() {
|
|
// Not implemented on other platforms. Maybe it could resort to polling.
|
|
}
|