Skip to content

Commit 7079869

Browse files
authored
1 parent 44b44b1 commit 7079869

File tree

1 file changed

+19
-9
lines changed

1 file changed

+19
-9
lines changed

CefSharp/Enums/CefErrorCode.cs

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,11 @@ public enum CefErrorCode
201201
/// </summary>
202202
NetworkAccessRevoked = -33,
203203

204+
/// <summary>
205+
/// The request was blocked by fingerprinting protections.
206+
/// </summary>
207+
BlockedByFingerprintingProtection = -34,
208+
204209
/// <summary>
205210
/// A connection was closed (corresponding to a TCP FIN).
206211
/// </summary>
@@ -789,11 +794,7 @@ public enum CefErrorCode
789794
/// </summary>
790795
CertificateTransparencyRequired = -214,
791796

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

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

811+
/// <summary>
812+
/// The certificate is self signed and it's being used for either an RFC1918 IP
813+
/// literal URL, or a url ending in .local.
814+
/// </summary>
815+
CertSelfSignedLocalNetwork = -219,
816+
810817
// Add new certificate error codes here.
811818
//
812819
// Update the value of CERT_END whenever you add a new certificate error
@@ -815,7 +822,7 @@ public enum CefErrorCode
815822
/// <summary>
816823
/// The value immediately past the last certificate error code.
817824
/// </summary>
818-
CertEnd = -219,
825+
CertEnd = -220,
819826

820827
/// <summary>
821828
/// The URL is invalid.
@@ -1104,6 +1111,11 @@ public enum CefErrorCode
11041111
/// </summary>
11051112
PacScriptTerminated = -367,
11061113

1114+
/// <summary>
1115+
/// Signals that the request requires the IPP proxy.
1116+
/// </summary>
1117+
ProxyRequired = -368,
1118+
11071119
// Obsolete. Kept here to avoid reuse.
11081120
// Request is throttled because of a Backoff header.
11091121
// See: crbug.com/486891.
@@ -1208,9 +1220,7 @@ public enum CefErrorCode
12081220
DictionaryLoadFailed = -387,
12091221

12101222
/// <summary>
1211-
/// The "content-dictionary" response header is unexpected. This is used both
1212-
/// when there is no "content-dictionary" response header and when the received
1213-
/// "content-dictionary" response header does not match the expected value.
1223+
/// The header of dictionary compressed stream does not match the expected value.
12141224
/// </summary>
12151225
UnexpectedContentDictionaryHeader = -388,
12161226

0 commit comments

Comments
 (0)