| Index: net/tools/quic/quic_client.h
|
| diff --git a/net/tools/quic/quic_client.h b/net/tools/quic/quic_client.h
|
| index 1328a5ee1faf61261b3c046ff2c6605ae9cacb55..fa3e014af397243a90e67b08a8e5bb6af3584891 100644
|
| --- a/net/tools/quic/quic_client.h
|
| +++ b/net/tools/quic/quic_client.h
|
| @@ -13,6 +13,8 @@
|
| #include "base/hash_tables.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "net/base/ip_endpoint.h"
|
| +#include "net/quic/crypto/crypto_handshake.h"
|
| +#include "net/quic/quic_config.h"
|
| #include "net/quic/quic_framer.h"
|
| #include "net/quic/quic_packet_creator.h"
|
| #include "net/tools/flip_server/epoll_server.h"
|
| @@ -141,6 +143,11 @@ class QuicClient : public EpollCallbackInterface {
|
| // because the socket would otherwise overflow.
|
| bool overflow_supported_;
|
|
|
| + // config_ and crypto_config_ contain configuration and cached state about
|
| + // servers.
|
| + QuicConfig config_;
|
| + QuicCryptoClientConfig crypto_config_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(QuicClient);
|
| };
|
|
|
|
|