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

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

Issue 2393943002: Adds QUIC_TOO_MANY_SESSIONS_ON_SERVER error code. (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | net/quic/core/quic_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 | « no previous file | net/quic/core/quic_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698