Files
sing-box-extended-mirror/common/settings/proxy_stub.go
T

15 lines
272 B
Go
Raw Normal View History

2022-08-04 22:01:20 +08:00
//go:build !(windows || linux || darwin)
2022-07-14 20:30:57 +08:00
package settings
2022-08-04 22:01:20 +08:00
import (
2023-09-03 14:29:37 +08:00
"context"
2022-08-04 22:01:20 +08:00
"os"
2022-07-14 20:30:57 +08:00
2023-09-03 14:29:37 +08:00
M "github.com/sagernet/sing/common/metadata"
2022-08-04 22:01:20 +08:00
)
2022-07-14 20:30:57 +08:00
2023-09-03 14:29:37 +08:00
func NewSystemProxy(ctx context.Context, serverAddr M.Socksaddr, supportSOCKS bool) (SystemProxy, error) {
2022-08-04 22:01:20 +08:00
return nil, os.ErrInvalid
2022-07-14 20:30:57 +08:00
}