mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-18 14:20:28 +00:00
17 lines
248 B
Go
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
|
|
}
|