2022-08-04 14:01:20 +00:00
|
|
|
//go:build !(windows || linux || darwin)
|
2022-07-14 12:30:57 +00:00
|
|
|
|
|
|
|
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"
|
2022-07-14 12:30:57 +00:00
|
|
|
|
2023-09-03 06:29:37 +00:00
|
|
|
M "github.com/sagernet/sing/common/metadata"
|
2022-08-04 14:01:20 +00:00
|
|
|
)
|
2022-07-14 12:30:57 +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
|
2022-07-14 12:30:57 +00:00
|
|
|
}
|