Chromium Code Reviews

Unified Diff: net/quic/quic_stream_factory.cc

Issue 1818393003: QUIC - Persist "Hash of the CHLO message" and "Signed timestamp of the (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: net/quic/quic_stream_factory.cc
diff --git a/net/quic/quic_stream_factory.cc b/net/quic/quic_stream_factory.cc
index a550bd9a10f90abf325791640aa78128fcc1e297..a032f2e9f33ad13a7056b3af3978fadddeeacc0a 100644
--- a/net/quic/quic_stream_factory.cc
+++ b/net/quic/quic_stream_factory.cc
@@ -1669,7 +1669,8 @@ void QuicStreamFactory::InitializeCachedStateInCryptoConfig(
cached->Initialize(server_info->state().server_config,
server_info->state().source_address_token,
- server_info->state().certs, "", "",
+ server_info->state().certs, server_info->state().cert_sct,
+ server_info->state().chlo_hash,
server_info->state().server_config_sig, clock_->WallNow());
}

Powered by Google App Engine