mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-09-04 13:36:35 +02:00
Port !997 from v1.0 onto the context-aware master recovery lifecycle. Preserve master logging and resolver APIs while adding macOS default-route DHCP detection, temporary DNS-target cleanup, and atomic recovery ownership. Includes parser, lifecycle, failure, and concurrency regressions plus the corrected macOS QA helper. Relates to #533 and #597.
15 lines
599 B
Go
15 lines
599 B
Go
//go:build !darwin
|
|
|
|
package cli
|
|
|
|
// ensureInterceptDNSTarget is a no-op on non-Darwin platforms: the DNS-less
|
|
// network problem it solves is specific to macOS pf interception blocking
|
|
// IPv6 port 53 with no IPv4 fallback (issue #533). Windows intercept mode
|
|
// uses NRPT, which routes queries regardless of adapter DNS configuration.
|
|
func (p *prog) ensureInterceptDNSTarget(_ []string) {}
|
|
|
|
// removeInterceptDNSTarget is a no-op on non-Darwin platforms.
|
|
//
|
|
//lint:ignore U1000 called from Darwin-only intercept shutdown; kept for API symmetry.
|
|
func (p *prog) removeInterceptDNSTarget(_ string) {}
|