reqwest
reqwest copied to clipboard
reqwest ignores `ProxyOverride` parameter on windows
reqwest doesn't use HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyOverride
parameter. If user adds local resources to exceptions list, reqwest will ignore it and will try to use proxy for those resources.
Is this a thing that curl or other client libraries look at? If so, I'd welcome a PR!
Hi, I've done some research on this issue:
- curl does not auto-detect windows system proxy, see this to-do item
- The semantics of
ProxyOverride
is described here - Python's standard library has an implementation for parsing
ProxyOverride
. But it does not strictly conform to the specifications