| Index: net/quic/quic_protocol.h
|
| diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h
|
| index 19ff84a9600d2f513d5ead6f4e0d396716039c6b..058e548b42ec18073a66537e8f505397f04e5d76 100644
|
| --- a/net/quic/quic_protocol.h
|
| +++ b/net/quic/quic_protocol.h
|
| @@ -48,9 +48,10 @@ typedef std::map<QuicTag, std::string> QuicTagValueMap;
|
| // QuicPriority is uint32. Use SpdyPriority when we change the QUIC_VERSION.
|
| typedef uint32 QuicPriority;
|
|
|
| -// TODO(rch): Consider Quic specific names for these constants.
|
| // Default and initial maximum size in bytes of a QUIC packet.
|
| const QuicByteCount kDefaultMaxPacketSize = 1350;
|
| +// Default initial maximum size in bytes of a QUIC packet for servers.
|
| +const QuicByteCount kDefaultServerMaxPacketSize = 1000;
|
| // The maximum packet size of any QUIC packet, based on ethernet's max size,
|
| // minus the IP and UDP headers. IPv6 has a 40 byte header, UPD adds an
|
| // additional 8 bytes. This is a total overhead of 48 bytes. Ethernet's
|
|
|