summaryrefslogtreecommitdiff
path: root/chromium/net/third_party/quiche/src/quic/core/quic_error_codes.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-29 10:46:47 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-11-02 12:02:10 +0000
commit99677208ff3b216fdfec551fbe548da5520cd6fb (patch)
tree476a4865c10320249360e859d8fdd3e01833b03a /chromium/net/third_party/quiche/src/quic/core/quic_error_codes.h
parentc30a6232df03e1efbd9f3b226777b07e087a1122 (diff)
downloadqtwebengine-chromium-99677208ff3b216fdfec551fbe548da5520cd6fb.tar.gz
BASELINE: Update Chromium to 86.0.4240.124
Change-Id: Ide0ff151e94cd665ae6521a446995d34a9d1d644 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/net/third_party/quiche/src/quic/core/quic_error_codes.h')
-rw-r--r--chromium/net/third_party/quiche/src/quic/core/quic_error_codes.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/chromium/net/third_party/quiche/src/quic/core/quic_error_codes.h b/chromium/net/third_party/quiche/src/quic/core/quic_error_codes.h
index 4c13f2c8382..b57eaa76080 100644
--- a/chromium/net/third_party/quiche/src/quic/core/quic_error_codes.h
+++ b/chromium/net/third_party/quiche/src/quic/core/quic_error_codes.h
@@ -437,6 +437,11 @@ enum QuicErrorCode {
// Received mismatched SETTINGS frame from HTTP/3 connection where early data
// is rejected. Our implementation currently doesn't support it.
QUIC_HTTP_ZERO_RTT_REJECTION_SETTINGS_MISMATCH = 165,
+ // Client received GOAWAY frame with stream ID that is not for a
+ // client-initiated bidirectional stream.
+ QUIC_HTTP_GOAWAY_INVALID_STREAM_ID = 166,
+ // Received GOAWAY frame with ID that is greater than previously received ID.
+ QUIC_HTTP_GOAWAY_ID_LARGER_THAN_PREVIOUS = 167,
// HPACK header block decoding errors.
// Index varint beyond implementation limit.
@@ -484,8 +489,11 @@ enum QuicErrorCode {
// This is the peer violating QUIC spec.
QUIC_ZERO_RTT_RESUMPTION_LIMIT_REDUCED = 163,
+ // The connection silently timed out due to no network activity.
+ QUIC_SILENT_IDLE_TIMEOUT = 168,
+
// No error. Used as bound while iterating.
- QUIC_LAST_ERROR = 166,
+ QUIC_LAST_ERROR = 169,
};
// QuicErrorCodes is encoded as four octets on-the-wire when doing Google QUIC,
// or a varint62 when doing IETF QUIC. Ensure that its value does not exceed