[PATCH 0/1] MR6390: include: Add http3 flag in winhttp.h
From: Biswapriyo Nath <nathbappai(a)gmail.com> Required for https://github.com/aws/aws-sdk-cpp/commit/f72005d2037c808ab83735623cb22ba849... --- include/winhttp.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/winhttp.h b/include/winhttp.h index 9408c4cbf65..104307682ee 100644 --- a/include/winhttp.h +++ b/include/winhttp.h @@ -192,7 +192,8 @@ typedef int INTERNET_SCHEME, *LPINTERNET_SCHEME; #define WINHTTP_DECOMPRESSION_FLAG_ALL ( WINHTTP_DECOMPRESSION_FLAG_GZIP | WINHTTP_DECOMPRESSION_FLAG_DEFLATE ) #define WINHTTP_PROTOCOL_FLAG_HTTP2 0x1 -#define WINHTTP_PROTOCOL_MASK WINHTTP_PROTOCOL_FLAG_HTTP2 +#define WINHTTP_PROTOCOL_FLAG_HTTP3 0x2 +#define WINHTTP_PROTOCOL_MASK (WINHTTP_PROTOCOL_FLAG_HTTP2 | WINHTTP_PROTOCOL_FLAG_HTTP3) #define WINHTTP_AUTOLOGON_SECURITY_LEVEL_MEDIUM 0 #define WINHTTP_AUTOLOGON_SECURITY_LEVEL_LOW 1 -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6390
participants (2)
-
Biswapriyo Nath -
Biswapriyo Nath (@Biswa96)