| Index: net/quic/core/quic_versions.h
|
| diff --git a/net/quic/core/quic_versions.h b/net/quic/core/quic_versions.h
|
| index 7bd12ec292a159ca3887a0ae0116b3204f26f188..1ddffe1ce554484826f709c7b54d982bdf03d1e1 100644
|
| --- a/net/quic/core/quic_versions.h
|
| +++ b/net/quic/core/quic_versions.h
|
| @@ -33,6 +33,11 @@ enum QuicVersion {
|
| // endian. Dot not ack acks. Send a connection level
|
| // WINDOW_UPDATE every 20 sent packets which do not
|
| // contain retransmittable frames.
|
| + QUIC_VERSION_40 = 40, // Initial packet number is randomly chosen from
|
| + // [0:2^31], WINDOW_UPDATE for connection flow control
|
| + // advertises value in 1024-byte units, WINDOW_UPDATE
|
| + // splits into MAX_DATA and MAX_STREAM_DATA, BLOCKED
|
| + // frame split into BLOCKED and STREAM_BLOCKED frames
|
|
|
| // IMPORTANT: if you are adding to this list, follow the instructions at
|
| // http://sites/quic/adding-and-removing-versions
|
| @@ -46,8 +51,8 @@ enum QuicVersion {
|
| // IMPORTANT: if you are adding to this list, follow the instructions at
|
| // http://sites/quic/adding-and-removing-versions
|
| static const QuicVersion kSupportedQuicVersions[] = {
|
| - QUIC_VERSION_39, QUIC_VERSION_38, QUIC_VERSION_37, QUIC_VERSION_36,
|
| - QUIC_VERSION_35};
|
| + QUIC_VERSION_40, QUIC_VERSION_39, QUIC_VERSION_38,
|
| + QUIC_VERSION_37, QUIC_VERSION_36, QUIC_VERSION_35};
|
|
|
| typedef std::vector<QuicVersion> QuicVersionVector;
|
|
|
|
|