sing-box/common/settings/proxy_stub.go

15 lines
272 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 (
2023-09-03 06:29:37 +00:00
"context"
2022-08-04 14:01:20 +00:00
"os"
2023-09-03 06:29:37 +00:00
M "github.com/sagernet/sing/common/metadata"
2022-08-04 14:01:20 +00:00
)
2023-09-03 06:29:37 +00:00
func NewSystemProxy(ctx context.Context, serverAddr M.Socksaddr, supportSOCKS bool) (SystemProxy, error) {
2022-08-04 14:01:20 +00:00
return nil, os.ErrInvalid
}