| Index: net/quic/quic_connection.h
|
| diff --git a/net/quic/quic_connection.h b/net/quic/quic_connection.h
|
| index 2f91bb4b881f4bde817b2e6b62b35a1312b929ee..2067a1172070ad1dbed287114f84aaf70a01bd12 100644
|
| --- a/net/quic/quic_connection.h
|
| +++ b/net/quic/quic_connection.h
|
| @@ -353,8 +353,12 @@ class NET_EXPORT_PRIVATE QuicConnection
|
| QuicConnectionId connection_id() const { return connection_id_; }
|
| const QuicClock* clock() const { return clock_; }
|
| QuicRandom* random_generator() const { return random_generator_; }
|
| -
|
| - QuicPacketCreator::Options* options() { return packet_creator_.options(); }
|
| + size_t max_packet_length() const {
|
| + return packet_creator_.max_packet_length();
|
| + }
|
| + void set_max_packet_length(size_t length) {
|
| + return packet_creator_.set_max_packet_length(length);
|
| + }
|
|
|
| bool connected() const { return connected_; }
|
|
|
|
|