proxy_stub.go 242 B

12345678910111213
  1. //go:build !(windows || linux || darwin)
  2. package settings
  3. import (
  4. "os"
  5. "github.com/sagernet/sing-box/adapter"
  6. )
  7. func SetSystemProxy(router adapter.Router, port uint16, isMixed bool) (func() error, error) {
  8. return nil, os.ErrInvalid
  9. }