Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Unified Diff: net/quic/core/quic_error_codes.h

Issue 2747443002: Landing recent QUIC changes until Sun Mar 5 09:18:09 2017 +0000 (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/quic/core/quic_error_codes.h
diff --git a/net/quic/core/quic_error_codes.h b/net/quic/core/quic_error_codes.h
index 05124be0064952af3f19dadda43311f8abb0f61d..38750a587bcb9d168ebbf4eb65345101195918c5 100644
--- a/net/quic/core/quic_error_codes.h
+++ b/net/quic/core/quic_error_codes.h
@@ -153,6 +153,9 @@ enum QuicErrorCode {
QUIC_EMPTY_STREAM_FRAME_NO_FIN = 50,
// We received invalid data on the headers stream.
QUIC_INVALID_HEADERS_STREAM_DATA = 56,
+ // Invalid data on the headers stream received because of decompression
+ // failure.
+ QUIC_HEADERS_STREAM_DATA_DECOMPRESS_FAILURE = 97,
// The peer received too much data, violating flow control.
QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA = 59,
// The peer sent too much data, violating flow control.
@@ -273,7 +276,7 @@ enum QuicErrorCode {
QUIC_TOO_MANY_SESSIONS_ON_SERVER = 96,
// No error. Used as bound while iterating.
- QUIC_LAST_ERROR = 97,
+ QUIC_LAST_ERROR = 98,
};
// QuicErrorCodes is encoded as a single octet on-the-wire.
static_assert(static_cast<int>(QUIC_LAST_ERROR) <=

Powered by Google App Engine
This is Rietveld 408576698