Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(343)

Unified Diff: net/tools/quic/quic_client_bin.cc

Issue 1454993002: QUIC - Code to verify SCT tag with certificate transparency verifier (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/tools/quic/quic_client_bin.cc
diff --git a/net/tools/quic/quic_client_bin.cc b/net/tools/quic/quic_client_bin.cc
index c5f624d52916461c39b1202e465daed0d358765e..6aeba9c68735c7ff60817eb2a603281098359998 100644
--- a/net/tools/quic/quic_client_bin.cc
+++ b/net/tools/quic/quic_client_bin.cc
@@ -242,7 +242,7 @@ int main(int argc, char *argv[]) {
new TransportSecurityState);
transport_security_state.reset(new TransportSecurityState);
ProofVerifierChromium* proof_verifier = new ProofVerifierChromium(
- cert_verifier.get(), nullptr, transport_security_state.get());
+ cert_verifier.get(), nullptr, transport_security_state.get(), nullptr);
Ryan Hamilton 2015/11/18 20:57:27 Can we use a real CTVerifier?
ramant (doing other things) 2015/11/21 00:27:03 Done.
net::tools::QuicClient client(net::IPEndPoint(ip_addr, FLAGS_port), server_id,
versions, &epoll_server, proof_verifier);
client.set_initial_max_packet_length(

Powered by Google App Engine
This is Rietveld 408576698