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
28 changes: 19 additions & 9 deletions CefSharp/Enums/CefErrorCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,11 @@ public enum CefErrorCode
/// </summary>
NetworkAccessRevoked = -33,

/// <summary>
/// The request was blocked by fingerprinting protections.
/// </summary>
BlockedByFingerprintingProtection = -34,

/// <summary>
/// A connection was closed (corresponding to a TCP FIN).
/// </summary>
Expand Down Expand Up @@ -789,11 +794,7 @@ public enum CefErrorCode
/// </summary>
CertificateTransparencyRequired = -214,

/// <summary>
/// The certificate chained to a legacy Symantec root that is no longer trusted.
/// https://g.co/chrome/symantecpkicerts
/// </summary>
CertSymantecLegacy = -215,
// Error -215 was removed (CERT_SYMANTEC_LEGACY)

// -216 was QUIC_CERT_ROOT_NOT_KNOWN which has been renumbered to not be in the
// certificate error range.
Expand All @@ -807,6 +808,12 @@ public enum CefErrorCode
// -218 was SSL_OBSOLETE_VERSION which is not longer used. TLS 1.0/1.1 instead
// cause SSL_VERSION_OR_CIPHER_MISMATCH now.

/// <summary>
/// The certificate is self signed and it's being used for either an RFC1918 IP
/// literal URL, or a url ending in .local.
/// </summary>
CertSelfSignedLocalNetwork = -219,

// Add new certificate error codes here.
//
// Update the value of CERT_END whenever you add a new certificate error
Expand All @@ -815,7 +822,7 @@ public enum CefErrorCode
/// <summary>
/// The value immediately past the last certificate error code.
/// </summary>
CertEnd = -219,
CertEnd = -220,

/// <summary>
/// The URL is invalid.
Expand Down Expand Up @@ -1104,6 +1111,11 @@ public enum CefErrorCode
/// </summary>
PacScriptTerminated = -367,

/// <summary>
/// Signals that the request requires the IPP proxy.
/// </summary>
ProxyRequired = -368,

// Obsolete. Kept here to avoid reuse.
// Request is throttled because of a Backoff header.
// See: crbug.com/486891.
Expand Down Expand Up @@ -1208,9 +1220,7 @@ public enum CefErrorCode
DictionaryLoadFailed = -387,

/// <summary>
/// The "content-dictionary" response header is unexpected. This is used both
/// when there is no "content-dictionary" response header and when the received
/// "content-dictionary" response header does not match the expected value.
/// The header of dictionary compressed stream does not match the expected value.
/// </summary>
UnexpectedContentDictionaryHeader = -388,

Expand Down