Skip to content

Commit

Permalink
Core - Update CefErrorCode (99.0.4844.27)
Browse files Browse the repository at this point in the history
  • Loading branch information
amaitland committed Feb 22, 2022
1 parent 6bb262e commit 08f3a40
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions CefSharp/Enums/CefErrorCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -280,14 +280,7 @@ public enum CefErrorCode
/// </summary>
ProxyAuthUnsupported = -115,

/// <summary>
/// During SSL renegotiation (rehandshake), the server sent a certificate with
/// an error.
///
/// Note: this error is not in the -2xx range so that it won't be handled as a
/// certificate error.
/// </summary>
CertErrorInSslRenegotiation = -116,
// Error -116 was removed (CERT_ERROR_IN_SSL_RENEGOTIATION)

/// <summary>
/// The SSL handshake failed because of a bad or missing client certificate.
Expand Down Expand Up @@ -805,10 +798,8 @@ public enum CefErrorCode
/// </summary>
CertKnownInterceptionBlocked = -217,

/// <summary>
/// The connection uses an obsolete version of SSL/TLS.
/// </summary>
SslObsoleteVersion = -218,
// -218 was SSL_OBSOLETE_VERSION which is not longer used. TLS 1.0/1.1 instead
// cause SSL_VERSION_OR_CIPHER_MISMATCH now.

// Add new certificate error codes here.
//
Expand Down Expand Up @@ -1488,5 +1479,10 @@ public enum CefErrorCode
/// https or wss.
/// </summary>
DnsNameHttpsOnly = -809,

/// <summary>
/// All DNS requests associated with this job have been cancelled.
/// </summary>
DnsRequestCancelled = -810,
};
}

0 comments on commit 08f3a40

Please sign in to comment.