Skip to content

Commit 6954490

Browse files
committed
1 parent 2a94e8a commit 6954490

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

CefSharp/Enums/CefErrorCode.cs

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -280,14 +280,7 @@ public enum CefErrorCode
280280
/// </summary>
281281
ProxyAuthUnsupported = -115,
282282

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

292285
/// <summary>
293286
/// The SSL handshake failed because of a bad or missing client certificate.
@@ -805,10 +798,8 @@ public enum CefErrorCode
805798
/// </summary>
806799
CertKnownInterceptionBlocked = -217,
807800

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

813804
// Add new certificate error codes here.
814805
//
@@ -1488,5 +1479,10 @@ public enum CefErrorCode
14881479
/// https or wss.
14891480
/// </summary>
14901481
DnsNameHttpsOnly = -809,
1482+
1483+
/// <summary>
1484+
/// All DNS requests associated with this job have been cancelled.
1485+
/// </summary>
1486+
DnsRequestCancelled = -810,
14911487
};
14921488
}

0 commit comments

Comments
 (0)