| Index: net/tools/quic/quic_dispatcher.h
|
| diff --git a/net/tools/quic/quic_dispatcher.h b/net/tools/quic/quic_dispatcher.h
|
| index 6b8f5e57c94a311f3e09045962c435952c86c54c..3a96176af3963bef1a234265bbfe64e8ea96c84c 100644
|
| --- a/net/tools/quic/quic_dispatcher.h
|
| +++ b/net/tools/quic/quic_dispatcher.h
|
| @@ -203,6 +203,10 @@ class QuicDispatcher : public QuicServerSessionVisitor,
|
| // cleaned up for bug 16950226.)
|
| virtual QuicPacketWriter* CreatePerConnectionWriter();
|
|
|
| + // Returns true if a session should be created for a connection with an
|
| + // unknown version identified by |version_tag|.
|
| + virtual bool ShouldCreateSessionForUnknownVersion(QuicTag version_tag);
|
| +
|
| void SetLastError(QuicErrorCode error);
|
|
|
| private:
|
| @@ -249,6 +253,7 @@ class QuicDispatcher : public QuicServerSessionVisitor,
|
| IPEndPoint current_client_address_;
|
| IPEndPoint current_server_address_;
|
| const QuicEncryptedPacket* current_packet_;
|
| + QuicConnectionId current_connection_id_;
|
|
|
| QuicFramer framer_;
|
|
|
|
|