| Index: net/quic/quic_framer.h
|
| diff --git a/net/quic/quic_framer.h b/net/quic/quic_framer.h
|
| index 456f2b096adcbbdd887b679023856cfcb6bc6a05..3cc242674bb974c2e54406370aa2cbec7c8b00fe 100644
|
| --- a/net/quic/quic_framer.h
|
| +++ b/net/quic/quic_framer.h
|
| @@ -369,6 +369,8 @@ class NET_EXPORT_PRIVATE QuicFramer {
|
| // Called when a PATH_CLOSED frame has been sent/received on |path_id|.
|
| void OnPathClosed(QuicPathId path_id);
|
|
|
| + QuicTag last_version_tag() { return last_version_tag_; }
|
| +
|
| private:
|
| friend class test::QuicFramerPeer;
|
|
|
| @@ -536,6 +538,8 @@ class NET_EXPORT_PRIVATE QuicFramer {
|
| QuicPathId last_path_id_;
|
| // Updated by WritePacketHeader.
|
| QuicConnectionId last_serialized_connection_id_;
|
| + // The last QUIC version tag received.
|
| + QuicTag last_version_tag_;
|
| // Version of the protocol being used.
|
| QuicVersion quic_version_;
|
| // This vector contains QUIC versions which we currently support.
|
|
|