Juan Lang : winhttp: More completely implement querying WINHTTP_OPTION_SECURITY_FLAGS.
Module: wine Branch: master Commit: b4851a8e4a8645c8f2695164b498061d392869af URL: http://source.winehq.org/git/wine.git/?a=commit;h=b4851a8e4a8645c8f2695164b4... Author: Juan Lang <juan.lang(a)gmail.com> Date: Wed Sep 29 09:22:26 2010 -0700 winhttp: More completely implement querying WINHTTP_OPTION_SECURITY_FLAGS. --- dlls/winhttp/session.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/dlls/winhttp/session.c b/dlls/winhttp/session.c index e0c1c2f..bed19a1 100644 --- a/dlls/winhttp/session.c +++ b/dlls/winhttp/session.c @@ -590,6 +590,8 @@ static BOOL request_query_option( object_header_t *hdr, DWORD option, LPVOID buf flags = 0; if (hdr->flags & WINHTTP_FLAG_SECURE) flags |= SECURITY_FLAG_SECURE; + flags |= request->netconn.security_flags; + /* FIXME: set connection cipher strength (SECURITY_FLAG_STRENGTH_*) */ *(DWORD *)buffer = flags; *buflen = sizeof(flags); return TRUE;
participants (1)
-
Alexandre Julliard