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

Unified Diff: net/quic/quic_protocol.h

Issue 1208933004: QUIC - disable QUIC under recent pathological connection errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: net-internals additions Created 5 years, 6 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/quic_protocol.h
diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h
index 8c23d1a0584ec46575d6485d4966de5170be8d50..16b87195d31890aaae5d64089923b18ee13d70aa 100644
--- a/net/quic/quic_protocol.h
+++ b/net/quic/quic_protocol.h
@@ -542,6 +542,10 @@ enum QuicErrorCode {
QUIC_CONNECTION_CANCELLED = 70,
// Disabled QUIC because of high packet loss rate.
QUIC_BAD_PACKET_LOSS_RATE = 71,
+ // Disabled QUIC because of too many PUBLIC_RESETs post handshake.
+ QUIC_PUBLIC_RESETS_POST_HANDSHAKE = 72,
+ // Disabled QUIC because of too many timeouts with streams open.
+ QUIC_TIMEOUTS_WITH_OPEN_STREAMS = 73,
Ryan Hamilton 2015/07/06 18:25:41 Since you're using the QuicDisabledReason enum, ar
Buck 2015/07/06 21:39:32 I think so, yes. These are used in QuicStreamFact
// Crypto errors.

Powered by Google App Engine
This is Rietveld 408576698