Files
ctrld/vpn_dns_others.go
T
2026-03-10 17:18:23 +07:00

15 lines
392 B
Go

//go:build !windows && !darwin && !linux
package ctrld
import (
"context"
)
// DiscoverVPNDNS is a stub implementation for unsupported platforms.
// Returns nil to indicate no VPN DNS configurations found.
func DiscoverVPNDNS(ctx context.Context) []VPNDNSConfig {
logger := LoggerFromCtx(ctx)
Log(ctx, logger.Debug(), "VPN DNS discovery not implemented for this platform")
return nil
}