Index: net/tools/quic/quic_dispatcher.cc |
diff --git a/net/tools/quic/quic_dispatcher.cc b/net/tools/quic/quic_dispatcher.cc |
index 124148c84e1fcbb53bef2d6e296f08915a1c2d56..d8065bb92632870ce782fea4f4b3da2cb9d75dc3 100644 |
--- a/net/tools/quic/quic_dispatcher.cc |
+++ b/net/tools/quic/quic_dispatcher.cc |
@@ -429,6 +429,7 @@ QuicDispatcher::QuicPacketFate QuicDispatcher::ValidityChecks( |
// Check that the sequence number is within the range that the client is |
// expected to send before receiving a response from the server. |
+ const int kInvalidPacketNumber = 0; |
if (header.packet_number == kInvalidPacketNumber || |
header.packet_number > kMaxReasonableInitialPacketNumber) { |
return kFateTimeWait; |