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
c3af903f
Commit
c3af903f
authored
Jan 20, 2010
by
Andrew Eikum
Committed by
Alexandre Julliard
Jan 21, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Implement PER_CONN_PROXY_SERVER option.
parent
7f3cbed8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
204 additions
and
0 deletions
+204
-0
internet.c
dlls/wininet/internet.c
+85
-0
internet.c
dlls/wininet/tests/internet.c
+119
-0
No files found.
dlls/wininet/internet.c
View file @
c3af903f
...
...
@@ -319,6 +319,48 @@ BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return
TRUE
;
}
/***********************************************************************
* INTERNET_SaveProxySettings
*
* Stores the proxy settings given by lpwai into the registry
*
* RETURNS
* ERROR_SUCCESS if no error, or error code on fail
*/
static
LONG
INTERNET_SaveProxySettings
(
proxyinfo_t
*
lpwpi
)
{
HKEY
key
;
LONG
ret
;
if
((
ret
=
RegOpenKeyW
(
HKEY_CURRENT_USER
,
szInternetSettings
,
&
key
)))
return
ret
;
if
((
ret
=
RegSetValueExW
(
key
,
szProxyEnable
,
0
,
REG_DWORD
,
(
BYTE
*
)
&
lpwpi
->
dwProxyEnabled
,
sizeof
(
DWORD
))))
{
RegCloseKey
(
key
);
return
ret
;
}
if
(
lpwpi
->
lpszProxyServer
)
{
if
((
ret
=
RegSetValueExW
(
key
,
szProxyServer
,
0
,
REG_SZ
,
(
BYTE
*
)
lpwpi
->
lpszProxyServer
,
sizeof
(
WCHAR
)
*
(
lstrlenW
(
lpwpi
->
lpszProxyServer
)
+
1
))))
{
RegCloseKey
(
key
);
return
ret
;
}
}
else
{
if
((
ret
=
RegDeleteValueW
(
key
,
szProxyServer
)))
{
RegCloseKey
(
key
);
return
ret
;
}
}
RegCloseKey
(
key
);
return
ERROR_SUCCESS
;
}
/***********************************************************************
* InternetInitializeAutoProxyDll (WININET.@)
...
...
@@ -2458,6 +2500,49 @@ BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
SetLastError
(
ERROR_INVALID_PARAMETER
);
ret
=
FALSE
;
break
;
case
INTERNET_OPTION_PER_CONNECTION_OPTION
:
{
INTERNET_PER_CONN_OPTION_LISTW
*
con
=
lpBuffer
;
LONG
res
;
int
i
;
proxyinfo_t
pi
;
INTERNET_LoadProxySettings
(
&
pi
);
for
(
i
=
0
;
i
<
con
->
dwOptionCount
;
i
++
)
{
INTERNET_PER_CONN_OPTIONW
*
option
=
con
->
pOptions
+
i
;
switch
(
option
->
dwOption
)
{
case
INTERNET_PER_CONN_PROXY_SERVER
:
HeapFree
(
GetProcessHeap
(),
0
,
pi
.
lpszProxyServer
);
pi
.
lpszProxyServer
=
heap_strdupW
(
option
->
Value
.
pszValue
);
break
;
case
INTERNET_PER_CONN_FLAGS
:
case
INTERNET_PER_CONN_AUTOCONFIG_URL
:
case
INTERNET_PER_CONN_AUTODISCOVERY_FLAGS
:
case
INTERNET_PER_CONN_AUTOCONFIG_SECONDARY_URL
:
case
INTERNET_PER_CONN_AUTOCONFIG_RELOAD_DELAY_MINS
:
case
INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_TIME
:
case
INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_URL
:
case
INTERNET_PER_CONN_PROXY_BYPASS
:
FIXME
(
"Unhandled dwOption %d
\n
"
,
option
->
dwOption
);
break
;
default:
FIXME
(
"Unknown dwOption %d
\n
"
,
option
->
dwOption
);
SetLastError
(
ERROR_INVALID_PARAMETER
);
break
;
}
}
if
((
res
=
INTERNET_SaveProxySettings
(
&
pi
)))
SetLastError
(
res
);
FreeProxyInfo
(
&
pi
);
ret
=
(
res
==
ERROR_SUCCESS
);
break
;
}
default:
FIXME
(
"Option %d STUB
\n
"
,
dwOption
);
SetLastError
(
ERROR_INTERNET_INVALID_OPTION
);
...
...
dlls/wininet/tests/internet.c
View file @
c3af903f
...
...
@@ -848,6 +848,123 @@ static void test_Option_Policy(void)
ok
(
ret
==
TRUE
,
"InternetCloseHandle failed: 0x%08x
\n
"
,
GetLastError
());
}
static
void
test_Option_PerConnectionOption
(
void
)
{
BOOL
ret
;
DWORD
size
=
sizeof
(
INTERNET_PER_CONN_OPTION_LISTW
);
INTERNET_PER_CONN_OPTION_LISTW
list
=
{
size
};
INTERNET_PER_CONN_OPTIONW
*
orig_settings
;
static
WCHAR
proxy_srvW
[]
=
{
'p'
,
'r'
,
'o'
,
'x'
,
'y'
,
'.'
,
'e'
,
'x'
,
'a'
,
'm'
,
'p'
,
'l'
,
'e'
,
0
};
/* get the global IE proxy server info, to restore later */
list
.
dwOptionCount
=
1
;
list
.
pOptions
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
INTERNET_PER_CONN_OPTIONW
));
list
.
pOptions
[
0
].
dwOption
=
INTERNET_PER_CONN_PROXY_SERVER
;
ret
=
InternetQueryOptionW
(
NULL
,
INTERNET_OPTION_PER_CONNECTION_OPTION
,
&
list
,
&
size
);
ok
(
ret
==
TRUE
,
"InternetQueryOption should've succeeded
\n
"
);
orig_settings
=
list
.
pOptions
;
/* set the global IE proxy server */
list
.
dwOptionCount
=
1
;
list
.
pOptions
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
INTERNET_PER_CONN_OPTIONW
));
list
.
pOptions
[
0
].
dwOption
=
INTERNET_PER_CONN_PROXY_SERVER
;
list
.
pOptions
[
0
].
Value
.
pszValue
=
proxy_srvW
;
ret
=
InternetSetOptionW
(
NULL
,
INTERNET_OPTION_PER_CONNECTION_OPTION
,
&
list
,
size
);
ok
(
ret
==
TRUE
,
"InternetSetOption should've succeeded
\n
"
);
HeapFree
(
GetProcessHeap
(),
0
,
list
.
pOptions
);
/* get & verify the global IE proxy server */
list
.
dwOptionCount
=
1
;
list
.
dwOptionError
=
0
;
list
.
pOptions
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
INTERNET_PER_CONN_OPTIONW
));
list
.
pOptions
[
0
].
dwOption
=
INTERNET_PER_CONN_PROXY_SERVER
;
ret
=
InternetQueryOptionW
(
NULL
,
INTERNET_OPTION_PER_CONNECTION_OPTION
,
&
list
,
&
size
);
ok
(
ret
==
TRUE
,
"InternetQueryOption should've succeeded
\n
"
);
ok
(
!
lstrcmpW
(
list
.
pOptions
[
0
].
Value
.
pszValue
,
proxy_srvW
),
"Retrieved proxy server should've been %s, was: %s
\n
"
,
wine_dbgstr_w
(
proxy_srvW
),
wine_dbgstr_w
(
list
.
pOptions
[
0
].
Value
.
pszValue
));
HeapFree
(
GetProcessHeap
(),
0
,
list
.
pOptions
);
/* restore original settings */
list
.
dwOptionCount
=
1
;
list
.
pOptions
=
orig_settings
;
ret
=
InternetSetOptionW
(
NULL
,
INTERNET_OPTION_PER_CONNECTION_OPTION
,
&
list
,
size
);
ok
(
ret
==
TRUE
,
"InternetSetOption should've succeeded
\n
"
);
HeapFree
(
GetProcessHeap
(),
0
,
list
.
pOptions
);
}
static
void
test_Option_PerConnectionOptionA
(
void
)
{
BOOL
ret
;
DWORD
size
=
sizeof
(
INTERNET_PER_CONN_OPTION_LISTA
);
INTERNET_PER_CONN_OPTION_LISTA
list
=
{
size
};
INTERNET_PER_CONN_OPTIONA
*
orig_settings
;
char
proxy_srv
[]
=
"proxy.example"
;
/* get the global IE proxy server info, to restore later */
list
.
dwOptionCount
=
1
;
list
.
pOptions
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
INTERNET_PER_CONN_OPTIONA
));
list
.
pOptions
[
0
].
dwOption
=
INTERNET_PER_CONN_PROXY_SERVER
;
ret
=
InternetQueryOptionA
(
NULL
,
INTERNET_OPTION_PER_CONNECTION_OPTION
,
&
list
,
&
size
);
ok
(
ret
==
TRUE
,
"InternetQueryOption should've succeeded
\n
"
);
orig_settings
=
list
.
pOptions
;
/* set the global IE proxy server */
list
.
dwOptionCount
=
1
;
list
.
pOptions
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
INTERNET_PER_CONN_OPTIONA
));
list
.
pOptions
[
0
].
dwOption
=
INTERNET_PER_CONN_PROXY_SERVER
;
list
.
pOptions
[
0
].
Value
.
pszValue
=
proxy_srv
;
ret
=
InternetSetOptionA
(
NULL
,
INTERNET_OPTION_PER_CONNECTION_OPTION
,
&
list
,
size
);
ok
(
ret
==
TRUE
,
"InternetSetOption should've succeeded
\n
"
);
HeapFree
(
GetProcessHeap
(),
0
,
list
.
pOptions
);
/* get & verify the global IE proxy server */
list
.
dwOptionCount
=
1
;
list
.
dwOptionError
=
0
;
list
.
pOptions
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
INTERNET_PER_CONN_OPTIONA
));
list
.
pOptions
[
0
].
dwOption
=
INTERNET_PER_CONN_PROXY_SERVER
;
ret
=
InternetQueryOptionA
(
NULL
,
INTERNET_OPTION_PER_CONNECTION_OPTION
,
&
list
,
&
size
);
ok
(
ret
==
TRUE
,
"InternetQueryOption should've succeeded
\n
"
);
ok
(
!
lstrcmpA
(
list
.
pOptions
[
0
].
Value
.
pszValue
,
"proxy.example"
),
"Retrieved proxy server should've been
\"
%s
\"
, was:
\"
%s
\"\n
"
,
proxy_srv
,
list
.
pOptions
[
0
].
Value
.
pszValue
);
HeapFree
(
GetProcessHeap
(),
0
,
list
.
pOptions
);
/* restore original settings */
list
.
dwOptionCount
=
1
;
list
.
pOptions
=
orig_settings
;
ret
=
InternetSetOptionA
(
NULL
,
INTERNET_OPTION_PER_CONNECTION_OPTION
,
&
list
,
size
);
ok
(
ret
==
TRUE
,
"InternetSetOption should've succeeded
\n
"
);
HeapFree
(
GetProcessHeap
(),
0
,
list
.
pOptions
);
}
/* ############################### */
...
...
@@ -872,6 +989,8 @@ START_TEST(internet)
test_version
();
test_null
();
test_Option_Policy
();
test_Option_PerConnectionOption
();
test_Option_PerConnectionOptionA
();
if
(
!
pInternetTimeFromSystemTimeA
)
win_skip
(
"skipping the InternetTime tests
\n
"
);
...
...
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