| Index: net/tools/quic/quic_dispatcher.h
|
| diff --git a/net/tools/quic/quic_dispatcher.h b/net/tools/quic/quic_dispatcher.h
|
| index 7141cf09f31bfde7f54510c072e31bedd8c1795c..ce2cf0150fdc531b9bec858528487edd7120a0c1 100644
|
| --- a/net/tools/quic/quic_dispatcher.h
|
| +++ b/net/tools/quic/quic_dispatcher.h
|
| @@ -84,7 +84,7 @@ class QuicDispatcher : public QuicServerSessionVisitor,
|
| void InitializeWithWriter(QuicPacketWriter* writer);
|
|
|
| // Process the incoming packet by creating a new session, passing it to
|
| - // an existing session, or passing it to the TimeWaitListManager.
|
| + // an existing session, or passing it to the time wait list.
|
| void ProcessPacket(const IPEndPoint& server_address,
|
| const IPEndPoint& client_address,
|
| const QuicEncryptedPacket& packet) override;
|
| @@ -148,11 +148,11 @@ class QuicDispatcher : public QuicServerSessionVisitor,
|
| virtual bool OnUnauthenticatedPublicHeader(
|
| const QuicPacketPublicHeader& header);
|
|
|
| - // Values to be returned by ValidityChecks() to indicate what should
|
| - // be done with a packet. Fates with greater values are considered
|
| - // to be higher priority, in that if one validity test indicates a
|
| - // lower-valued fate and another validity test indicates a
|
| - // higher-valued fate, the higher-valued fate should be obeyed.
|
| + // Values to be returned by ValidityChecks() to indicate what should be done
|
| + // with a packet. Fates with greater values are considered to be higher
|
| + // priority, in that if one validity check indicates a lower-valued fate and
|
| + // another validity check indicates a higher-valued fate, the higher-valued
|
| + // fate should be obeyed.
|
| enum QuicPacketFate {
|
| // Process the packet normally, which is usually to establish a connection.
|
| kFateProcess,
|
|
|