Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
438be708
Commit
438be708
authored
May 06, 2013
by
Daniel Lehman
Committed by
Alexandre Julliard
May 08, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Copy and pass along proxyBypass in INTERNET_ConfigureProxy.
parent
d3308e6f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
internet.c
dlls/wininet/internet.c
+2
-1
No files found.
dlls/wininet/internet.c
View file @
438be708
...
...
@@ -697,13 +697,14 @@ static BOOL INTERNET_ConfigureProxy( appinfo_t *lpwai )
lpwai
->
accessType
=
INTERNET_OPEN_TYPE_PROXY
;
lpwai
->
proxy
=
heap_strdupW
(
proxyurl
);
lpwai
->
proxyBypass
=
heap_strdupW
(
wpi
.
proxyBypass
);
if
(
UrlComponents
.
dwUserNameLength
)
{
lpwai
->
proxyUsername
=
heap_strdupW
(
UrlComponents
.
lpszUserName
);
lpwai
->
proxyPassword
=
heap_strdupW
(
UrlComponents
.
lpszPassword
);
}
TRACE
(
"http proxy = %s
\n
"
,
debugstr_w
(
lpwai
->
proxy
));
TRACE
(
"http proxy = %s
bypass = %s
\n
"
,
debugstr_w
(
lpwai
->
proxy
),
debugstr_w
(
lpwai
->
proxyBypass
));
return
TRUE
;
}
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment