Files
sing-box/experimental/boxdd/insecure_mode_stub.go
T
2026-07-16 00:38:31 +08:00

17 lines
238 B
Go

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