| Index: net/quic/crypto/crypto_server_test.cc
|
| diff --git a/net/quic/crypto/crypto_server_test.cc b/net/quic/crypto/crypto_server_test.cc
|
| index 7ab0efef3009a4c558db5d7668916c43ef71aa22..2d5c9f4d2b0b02ffe6225675424bc17cb6ee3605 100644
|
| --- a/net/quic/crypto/crypto_server_test.cc
|
| +++ b/net/quic/crypto/crypto_server_test.cc
|
| @@ -17,14 +17,15 @@ class CryptoServerTest : public ::testing::Test {
|
| public:
|
| CryptoServerTest()
|
| : rand_(QuicRandom::GetInstance()),
|
| - config_(QuicCryptoServerConfig::TESTING),
|
| + config_(QuicCryptoServerConfig::TESTING, rand_),
|
| addr_(ParseIPLiteralToNumber("192.0.2.33", &ip_) ?
|
| ip_ : IPAddressNumber(), 1) {
|
| }
|
|
|
| virtual void SetUp() {
|
| scoped_ptr<CryptoHandshakeMessage> msg(
|
| - config_.AddDefaultConfig(rand_, &clock_, 0));
|
| + config_.AddDefaultConfig(rand_, &clock_,
|
| + QuicCryptoServerConfig::ConfigOptions()));
|
| }
|
|
|
| void ShouldSucceed(const CryptoHandshakeMessage& message) {
|
|
|