File tree Expand file tree Collapse file tree 1 file changed +8
-12
lines changed Expand file tree Collapse file tree 1 file changed +8
-12
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments