https://bugs.winehq.org/show_bug.cgi?id=27113
Qian Hong fracting@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |bedf296a27d5689beb693637407 | |829b0bd6d8a1c Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED
--- Comment #10 from Qian Hong fracting@gmail.com --- (In reply to Qian Hong from comment #6)
(In reply to comment #5)
Is it possible to know the exact option it tries to set and adds the error?
Yeah, only INTERNET_OPTION_PROXY_USERNAME and INTERNET_OPTION_PROXY_PASSWORD are needed.
- If InternetSetOptionW for INTERNET_OPTION_PROXY_USERNAME return FALSE,
then INTERNET_OPTION_PROXY_PASSWORD is not set, fdm.exe fail to download files;
- If InternetSetOptionW for INTERNET_OPTION_PROXY_USERNAME return TRUE,
then the application will try to set INTERNET_OPTION_PROXY_PASSWORD:
- If InternetSetOptionW for INTERNET_OPTION_PROXY_PASSWORD return FALSE,
then fdm.exe will still fail to download
- Instead, if InternetSetOptionW for INTERNET_OPTION_PROXY_PASSWORD
return TRUE as well, fdm.exe will start to download.
Thanks Austin, I can't reproduce the bug. According to comment #6, I think this bug is fixed by:
commit bedf296a27d5689beb693637407829b0bd6d8a1c Author: Hans Leidekker hans@codeweavers.com Date: Mon Apr 22 11:02:50 2013 +0200
wininet: Add support for INTERNET_OPTION_PROXY_USERNAME and INTERNET_OPTION_PROXY_PASSWORD.