| Index: net/quic/quic_crypto_server_stream.cc
|
| diff --git a/net/quic/quic_crypto_server_stream.cc b/net/quic/quic_crypto_server_stream.cc
|
| index c9ed0ece69750738affaea5593a3bb09d679e901..12b9abc077e88070eb5b4deb8db5a123109d7a1b 100644
|
| --- a/net/quic/quic_crypto_server_stream.cc
|
| +++ b/net/quic/quic_crypto_server_stream.cc
|
| @@ -91,6 +91,7 @@ void QuicCryptoServerStream::FinishProcessingHandshakeMessage(
|
|
|
| // If we are returning a SHLO then we accepted the handshake.
|
| QuicConfig* config = session()->config();
|
| + OverrideQuicConfigDefaults(config);
|
| error = config->ProcessPeerHello(message, CLIENT, &error_details);
|
| if (error != QUIC_NO_ERROR) {
|
| CloseConnectionWithDetails(error, error_details);
|
| @@ -178,6 +179,9 @@ QuicErrorCode QuicCryptoServerStream::ProcessClientHello(
|
| &crypto_negotiated_params_, reply, error_details);
|
| }
|
|
|
| +void QuicCryptoServerStream::OverrideQuicConfigDefaults(QuicConfig* config) {
|
| +}
|
| +
|
| QuicCryptoServerStream::ValidateCallback::ValidateCallback(
|
| QuicCryptoServerStream* parent) : parent_(parent) {
|
| }
|
|
|