| Index: net/tools/quic/quic_packet_reader.h
|
| diff --git a/net/tools/quic/quic_packet_reader.h b/net/tools/quic/quic_packet_reader.h
|
| index a4d207581b718a059840d82088254fe0653c5fe4..423783f1a6f8f889d83f247f68921ea58a279f0b 100644
|
| --- a/net/tools/quic/quic_packet_reader.h
|
| +++ b/net/tools/quic/quic_packet_reader.h
|
| @@ -44,11 +44,8 @@ class QuicPacketReader {
|
| // to track dropped packets and some packets are read.
|
| // If the socket has timestamping enabled, the per packet timestamps will be
|
| // passed to the processor. Otherwise, |clock| will be used.
|
| - // If |potentially_small_mtu| is set, the incoming packets have been
|
| - // identified as potentially having an unusually small MTU.
|
| virtual bool ReadAndDispatchPackets(int fd,
|
| int port,
|
| - bool potentially_small_mtu,
|
| const QuicClock& clock,
|
| ProcessPacketInterface* processor,
|
| QuicPacketCount* packets_dropped);
|
| @@ -60,7 +57,6 @@ class QuicPacketReader {
|
| // Reads and dispatches many packets using recvmmsg.
|
| bool ReadAndDispatchManyPackets(int fd,
|
| int port,
|
| - bool potentially_small_mtu,
|
| const QuicClock& clock,
|
| ProcessPacketInterface* processor,
|
| QuicPacketCount* packets_dropped);
|
| @@ -68,7 +64,6 @@ class QuicPacketReader {
|
| // Reads and dispatches a single packet using recvmsg.
|
| static bool ReadAndDispatchSinglePacket(int fd,
|
| int port,
|
| - bool potentially_small_mtu,
|
| const QuicClock& clock,
|
| ProcessPacketInterface* processor,
|
| QuicPacketCount* packets_dropped);
|
|
|