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

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

Issue 2391103003: Landing Recent QUIC changes until 3:24 PM, Oct 01, 2016 UTC-4 (Closed)
Patch Set: Add new error code to quic_error_mapping.cc Created 4 years, 2 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_protocol.h
diff --git a/net/quic/core/quic_protocol.h b/net/quic/core/quic_protocol.h
index 8906879e3727e494b39fd688445875099fd4a692..ce9fd2591bb1bef1ad344decfced4bbef34428cc 100644
--- a/net/quic/core/quic_protocol.h
+++ b/net/quic/core/quic_protocol.h
@@ -728,8 +728,12 @@ enum QuicErrorCode {
// to crash.
QUIC_STREAM_SEQUENCER_INVALID_STATE = 95,
+ // Connection closed because of server hits max number of sessions allowed.
+ // TODO(fayang): Add monitoring for QUIC_TOO_MANY_SESSIONS_ON_SERVER.
+ QUIC_TOO_MANY_SESSIONS_ON_SERVER = 96,
+
// No error. Used as bound while iterating.
- QUIC_LAST_ERROR = 96,
+ QUIC_LAST_ERROR = 97,
};
typedef std::array<char, 32> DiversificationNonce;
« no previous file with comments | « net/quic/core/quic_multipath_received_packet_manager_test.cc ('k') | net/quic/core/quic_received_packet_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698