Files
sing-box/common/settings/proxy_stub.go
2022-07-14 20:32:17 +08:00

15 lines
266 B
Go

//go:build !windows && !linux
package settings
import "github.com/sagernet/sing-box/log"
func ClearSystemProxy() error {
return nil
}
func SetSystemProxy(port uint16, mixed bool) error {
log.Warn("set system proxy: unsupported operating system")
return nil
}