mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 11:35:35 +00:00
a39d2403bc
They need some rework to do the right thing, in the meantime the direct and resolvconf managers will work out. The resolved implementation was never selected due to control-side settings. The networkmanager implementation mostly doesn't get selected due to unforeseen interactions with `resolvconf` on many platforms. Both implementations also need rework to support the various routing modes they're capable of. Signed-off-by: David Anderson <danderson@tailscale.com>
22 lines
591 B
Go
22 lines
591 B
Go
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package dns
|
|
|
|
import "tailscale.com/types/logger"
|
|
|
|
func newManager(logf logger.Logf, interfaceName string) OSConfigurator {
|
|
switch {
|
|
// TODO: rework NetworkManager and resolved support.
|
|
// case isResolvedActive():
|
|
// return newResolvedManager()
|
|
// case isNMActive():
|
|
// return newNMManager(interfaceName)
|
|
case isResolvconfActive():
|
|
return newResolvconfManager(logf)
|
|
default:
|
|
return newDirectManager()
|
|
}
|
|
}
|