Skip to content

Commit 8992258

Browse files
committed
1 parent fed03c3 commit 8992258

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

CefSharp/Enums/CefErrorCode.cs

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1121,16 +1121,11 @@ public enum CefErrorCode
11211121
/// </summary>
11221122
Http2RstStreamNoErrorReceived = -372,
11231123

1124-
/// <summary>
1125-
/// The pushed stream claimed by the request is no longer available.
1126-
/// </summary>
1127-
Http2PushedStreamNotAvailable = -373,
1124+
// Obsolete. HTTP/2 push is removed.
1125+
// NET_ERROR(HTTP2_PUSHED_STREAM_NOT_AVAILABLE, -373)
11281126

1129-
/// <summary>
1130-
/// A pushed stream was claimed and later reset by the server. When this happens,
1131-
/// the request should be retried.
1132-
/// </summary>
1133-
Http2ClaimedPushedStreamResetByServer = -374,
1127+
// Obsolete. HTTP/2 push is removed.
1128+
// NET_ERROR(HTTP2_CLAIMED_PUSHED_STREAM_RESET_BY_SERVER, -374)
11341129

11351130
/// <summary>
11361131
/// An HTTP transaction was retried too many times due for authentication or
@@ -1145,21 +1140,16 @@ public enum CefErrorCode
11451140
/// </summary>
11461141
Http2StreamClosed = -376,
11471142

1148-
/// <summary>
1149-
/// Client is refusing an HTTP/2 stream.
1150-
/// </summary>
1151-
Http2ClientRefusedStream = -377,
1143+
// Obsolete. HTTP/2 push is removed.
1144+
// NET_ERROR(HTTP2_CLIENT_REFUSED_STREAM, -377)
11521145

1153-
/// <summary>
1154-
/// A pushed HTTP/2 stream was claimed by a request based on matching URL and
1155-
/// request headers, but the pushed response headers do not match the request.
1156-
/// </summary>
1157-
Http2PushedResponseDoesNotMatch = -378,
1146+
// Obsolete. HTTP/2 push is removed.
1147+
// NET_ERROR(HTTP2_PUSHED_RESPONSE_DOES_NOT_MATCH, -378)
11581148

11591149
/// <summary>
11601150
/// The server returned a non-2xx HTTP response code.
11611151
///
1162-
/// Not that this error is only used by certain APIs that interpret the HTTP
1152+
/// Note that this error is only used by certain APIs that interpret the HTTP
11631153
/// response itself. URLRequest for instance just passes most non-2xx
11641154
/// response back as success.
11651155
/// </summary>
@@ -1191,7 +1181,7 @@ public enum CefErrorCode
11911181
InconsistentIpAddressSpace = -383,
11921182

11931183
/// <summary>
1194-
/// The IP address space of the cached remote endpoint is blocked by local
1184+
/// The IP address space of the cached remote endpoint is blocked by private
11951185
/// network access check.
11961186
/// </summary>
11971187
CachedIpAddressSpaceBlockedByLocalNetworkAccessPolicy = -384,
@@ -1436,6 +1426,11 @@ public enum CefErrorCode
14361426

14371427
// Error -715 was removed (CHANNEL_ID_IMPORT_FAILED)
14381428

1429+
/// <summary>
1430+
/// The certificate verifier configuration changed in some way.
1431+
/// </summary>
1432+
CertVerifierChanged = -716,
1433+
14391434
// DNS error codes.
14401435

14411436
/// <summary>
@@ -1508,5 +1503,10 @@ public enum CefErrorCode
15081503
/// alpn values of supported protocols, but did not.
15091504
/// </summary>
15101505
DnsNoMatchingSupportedAlpn = -811,
1506+
1507+
/// <summary>
1508+
/// The compression dictionary cannot be loaded.
1509+
/// </summary>
1510+
DictionaryLoadFailed = -812,
15111511
};
15121512
}

0 commit comments

Comments
 (0)