Add set_system_proxy for linux and android

This commit is contained in:
世界
2022-07-14 20:30:57 +08:00
parent de2db7c2d2
commit b9086b31e6
12 changed files with 182 additions and 47 deletions

View File

@@ -0,0 +1,14 @@
//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
}