Chromium Code Reviews| 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. |