| Index: net/tools/quic/quic_client_base.h
|
| diff --git a/net/tools/quic/quic_client_base.h b/net/tools/quic/quic_client_base.h
|
| index 738eb1ec1b6f48168c31863239d2b3cf181575e7..206dd1a5b87d55e75989b4ca4837e5a1f9973ffc 100644
|
| --- a/net/tools/quic/quic_client_base.h
|
| +++ b/net/tools/quic/quic_client_base.h
|
| @@ -170,6 +170,14 @@ class QuicClientBase {
|
|
|
| QuicConnectionHelperInterface* helper() { return helper_.get(); }
|
|
|
| + void set_num_sent_client_hellos(int num_sent_client_hellos) {
|
| + num_sent_client_hellos_ = num_sent_client_hellos;
|
| + }
|
| +
|
| + void set_num_stateless_rejects_received(int num_stateless_rejects_received) {
|
| + num_stateless_rejects_received_ = num_stateless_rejects_received;
|
| + }
|
| +
|
| private:
|
| // |server_id_| is a tuple (hostname, port, is_https) of the server.
|
| QuicServerId server_id_;
|
|
|