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
6e6ffab6
Commit
6e6ffab6
authored
Sep 08, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Sep 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Option WINHTTP_OPTION_SERVER_CERT_CONTEXT must return a pointer.
parent
a66ef8fa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
session.c
dlls/winhttp/session.c
+1
-1
winhttp.c
dlls/winhttp/tests/winhttp.c
+11
-1
No files found.
dlls/winhttp/session.c
View file @
6e6ffab6
...
...
@@ -271,7 +271,7 @@ static BOOL request_query_option( object_header_t *hdr, DWORD option, LPVOID buf
request_t
*
request
=
(
request_t
*
)
hdr
;
if
(
!
(
cert
=
netconn_get_certificate
(
&
request
->
netconn
)))
return
FALSE
;
memcpy
(
buffer
,
cert
,
sizeof
(
CERT_CONTEXT
)
)
;
*
(
CERT_CONTEXT
**
)
buffer
=
(
CERT_CONTEXT
*
)
cert
;
*
buflen
=
sizeof
(
cert
);
return
TRUE
;
}
...
...
dlls/winhttp/tests/winhttp.c
View file @
6e6ffab6
...
...
@@ -23,6 +23,7 @@
#include <windef.h>
#include <winbase.h>
#include <winhttp.h>
#include <wincrypt.h>
#include "wine/test.h"
...
...
@@ -556,8 +557,9 @@ static void test_secure_connection(void)
static
const
WCHAR
google
[]
=
{
'w'
,
'w'
,
'w'
,
'.'
,
'g'
,
'o'
,
'o'
,
'g'
,
'l'
,
'e'
,
'.'
,
'c'
,
'o'
,
'm'
,
0
};
HANDLE
ses
,
con
,
req
;
DWORD
size
,
status
,
policy
;
DWORD
size
,
status
,
policy
,
bitness
;
BOOL
ret
;
CERT_CONTEXT
*
cert
;
ses
=
WinHttpOpen
(
test_useragent
,
0
,
NULL
,
NULL
,
0
);
ok
(
ses
!=
NULL
,
"failed to open session %u
\n
"
,
GetLastError
());
...
...
@@ -591,6 +593,14 @@ static void test_secure_connection(void)
ret
=
WinHttpSendRequest
(
req
,
NULL
,
0
,
NULL
,
0
,
0
,
0
);
ok
(
ret
,
"failed to send request %u
\n
"
,
GetLastError
());
size
=
sizeof
(
cert
);
ret
=
WinHttpQueryOption
(
req
,
WINHTTP_OPTION_SERVER_CERT_CONTEXT
,
&
cert
,
&
size
);
ok
(
ret
,
"failed to retrieve certificate context %u
\n
"
,
GetLastError
());
size
=
sizeof
(
bitness
);
ret
=
WinHttpQueryOption
(
req
,
WINHTTP_OPTION_SECURITY_KEY_BITNESS
,
&
bitness
,
&
size
);
ok
(
ret
,
"failed to retrieve key bitness %u
\n
"
,
GetLastError
());
ret
=
WinHttpReceiveResponse
(
req
,
NULL
);
ok
(
ret
,
"failed to receive response %u
\n
"
,
GetLastError
());
...
...
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