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

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

Issue 1459343009: Make QuicPacketCreator be able to serialize packet itself when it does not have room for next strea… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@107733506
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
« no previous file with comments | « net/quic/quic_packet_generator_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_server_bin.cc
diff --git a/net/tools/quic/quic_server_bin.cc b/net/tools/quic/quic_server_bin.cc
index 7cb86cbc9b42967ee989c773f53a6caa6481737c..469fbd837357bcf656147921ab25e5966dd91868 100644
--- a/net/tools/quic/quic_server_bin.cc
+++ b/net/tools/quic/quic_server_bin.cc
@@ -56,9 +56,21 @@ net::ProofSource* CreateProofSource(const base::FilePath& cert_path,
return new gfe_quic::ProofSourceGoogle3([=]() { return ssl_ctx; });
}
+<<<<<<<
>>>>>>>
=======
SSLContext* ssl_ctx = new SSLContext(
+|||||||
+ config.set_issuing_certificates_file(intermediate_cert_name);
+ config.add_cert()->set_name(leaf_cert_name);
+
+ SSLContext* ssl_ctx = new SSLContext(
+=======
+ config.set_issuing_certificates_file(intermediate_cert_name);
+ config.add_cert()->set_name(leaf_cert_name);
+
+ auto ssl_ctx = std::make_shared<SSLContext>(
+>>>>>>>
Ryan Hamilton 2015/11/22 00:55:32 I think something has gone sideways...
ianswett 2015/11/23 20:05:19 Done.
SSLContext::SSL_SERVER_CONTEXT_SSL_V23,
SSL_SESS_CACHE_SERVER | SSL_SESS_CACHE_NO_INTERNAL_STORE);
CHECK(ssl_ctx->Init(NO_AUTHENTICATE_PEER, &config));
« no previous file with comments | « net/quic/quic_packet_generator_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698