Chromium Code Reviews| Index: net/quic/quic_protocol.h |
| diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h |
| index 3daf9174c6d3fe012d949a150d58a44076ef8dda..c81e3fc776f55717ff0f5cb9debc68d75dc27f60 100644 |
| --- a/net/quic/quic_protocol.h |
| +++ b/net/quic/quic_protocol.h |
| @@ -513,6 +513,8 @@ enum QuicErrorCode { |
| QUIC_TOO_MANY_OUTSTANDING_SENT_PACKETS = 68, |
| // The connection has too many outstanding received packets. |
| QUIC_TOO_MANY_OUTSTANDING_RECEIVED_PACKETS = 69, |
| + // The quic connection job to load server config is cancelled. |
| + QUIC_LOAD_SERVER_CONFIG_JOB_CANCELLED = 70, |
|
Ryan Hamilton
2015/02/05 20:30:27
nit: I would just name this QUIC_CONNECTION_CANCEL
ramant (doing other things)
2015/02/06 00:59:41
Done.
|
| // Crypto errors. |
| @@ -570,7 +572,7 @@ enum QuicErrorCode { |
| QUIC_VERSION_NEGOTIATION_MISMATCH = 55, |
| // No error. Used as bound while iterating. |
| - QUIC_LAST_ERROR = 70, |
| + QUIC_LAST_ERROR = 71, |
| }; |
| struct NET_EXPORT_PRIVATE QuicPacketPublicHeader { |