mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
wininet: skip set bypass list
This commit is contained in:
parent
fd5c69d7ab
commit
d8c779c030
1 changed files with 3 additions and 0 deletions
|
@ -102,6 +102,9 @@ func SetSystemProxy(proxy string, bypass string) error {
|
|||
var proxyOption internetPerConnOption
|
||||
proxyOption.dwOption = internetPerConnProxyServer
|
||||
*((*uintptr)(unsafe.Pointer(&proxyOption.value))) = uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(proxy)))
|
||||
if bypass == "" {
|
||||
return setOptions(flagsOption, proxyOption)
|
||||
}
|
||||
var bypassOption internetPerConnOption
|
||||
bypassOption.dwOption = internetPerConnProxyBypass
|
||||
*((*uintptr)(unsafe.Pointer(&bypassOption.value))) = uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(bypass)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue