Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CefSharp/Enums/CefErrorCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1464,5 +1464,12 @@ public enum CefErrorCode
/// Failed to resolve the hostname of a DNS-over-HTTPS server.
/// </summary>
DnsSecureResolverHostnameResolutionFailed = -808,

/// <summary>
/// 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.
/// </summary>
DnsNameHttpsOnly = 809,
};
}