Commit b4851a8e authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

winhttp: More completely implement querying WINHTTP_OPTION_SECURITY_FLAGS.

parent ee2e9cc3
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment