Files
sing-box/experimental/boxdd/insecure_mode_stub.go
2026-07-19 17:35:53 +08:00

17 lines
248 B
Go

//go:build !windows && !linux
package main
import "context"
func registerSecurityPolicy(ctx context.Context, daemon *Daemon) {
}
func insecureModeAvailable() bool {
return false
}
func (d *Daemon) insecureModeEnabled() bool {
return false
}