| Index: net/quic/crypto/quic_crypto_client_config.h
|
| diff --git a/net/quic/crypto/quic_crypto_client_config.h b/net/quic/crypto/quic_crypto_client_config.h
|
| index 06925ac426d6479df752e91fc7a84199814b9b2a..131e6da4fe119229760279c6e4c8398c757193b6 100644
|
| --- a/net/quic/crypto/quic_crypto_client_config.h
|
| +++ b/net/quic/crypto/quic_crypto_client_config.h
|
| @@ -267,15 +267,16 @@ class NET_EXPORT_PRIVATE QuicCryptoClientConfig : public QuicCryptoConfig {
|
| private:
|
| typedef std::map<QuicServerId, CachedState*> CachedStateMap;
|
|
|
| - // CacheNewServerConfig checks for SCFG, STK, and PROF tags in |message|,
|
| + // CacheNewServerConfig checks for SCFG, STK, PROF, and CRT tags in |message|,
|
| // verifies them, and stores them in the cached state if they validate.
|
| // This is used on receipt of a REJ from a server, or when a server sends
|
| // updated server config during a connection.
|
| - QuicErrorCode CacheNewServerConfig(const CryptoHandshakeMessage& message,
|
| - QuicWallTime now,
|
| - CachedState* cached,
|
| - QuicCryptoNegotiatedParameters* out_params,
|
| - std::string* error_details);
|
| + QuicErrorCode CacheNewServerConfig(
|
| + const CryptoHandshakeMessage& message,
|
| + QuicWallTime now,
|
| + const std::vector<std::string>& cached_certs,
|
| + CachedState* cached,
|
| + std::string* error_details);
|
|
|
| // If the suffix of the hostname in |server_id| is in |canoncial_suffixes_|,
|
| // then populate |cached| with the canonical cached state from
|
|
|