mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-04-20 00:36:37 +02:00
15 lines
392 B
Go
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
|
|
} |