sing-box/common/settings/proxy_stub.go

14 lines
242 B
Go
Raw Normal View History

2022-08-04 14:01:20 +00:00
//go:build !(windows || linux || darwin)
package settings
2022-08-04 14:01:20 +00:00
import (
"os"
2022-08-04 14:01:20 +00:00
"github.com/sagernet/sing-box/adapter"
)
2022-08-04 14:01:20 +00:00
func SetSystemProxy(router adapter.Router, port uint16, isMixed bool) (func() error, error) {
return nil, os.ErrInvalid
}