From 4f4dc2093586fe08e9919d6292fdde7d3f947cbd Mon Sep 17 00:00:00 2001 From: campersau Date: Tue, 21 Sep 2021 10:02:49 +0200 Subject: [PATCH] Core - Update CefErrorCode Using https://raw.githubusercontent.com/chromium/chromium/94.0.4606.50/net/base/net_error_list.h --- CefSharp/Enums/CefErrorCode.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CefSharp/Enums/CefErrorCode.cs b/CefSharp/Enums/CefErrorCode.cs index 68c5d25a3d..5759f79786 100644 --- a/CefSharp/Enums/CefErrorCode.cs +++ b/CefSharp/Enums/CefErrorCode.cs @@ -1464,5 +1464,12 @@ public enum CefErrorCode /// Failed to resolve the hostname of a DNS-over-HTTPS server. /// DnsSecureResolverHostnameResolutionFailed = -808, + + /// + /// DNS identified the request as disallowed for insecure connection (http/ws). + /// Error should be handled as if an HTTP redirect was received to redirect to + /// https or wss. + /// + DnsNameHttpsOnly = 809, }; }