Add set_system_proxy option for windows

This commit is contained in:
世界
2022-07-14 14:04:57 +08:00
parent e7d557fd9e
commit 238afda9da
11 changed files with 203 additions and 47 deletions

View File

@@ -0,0 +1,13 @@
//go:build !windows
package wininet
import "os"
func ClearSystemProxy() error {
return os.ErrInvalid
}
func SetSystemProxy(proxy string, bypass string) error {
return os.ErrInvalid
}