mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
15 lines
266 B
Go
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
|
|
}
|