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

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

Issue 13976007: Land Recent QUIC Changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated copyright notice Created 7 years, 8 months 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/tools/quic/quic_server_session.h ('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_session.cc
diff --git a/net/tools/quic/quic_server_session.cc b/net/tools/quic/quic_server_session.cc
index fc84f75f5f538c6e0cd9d6bd032a45f9cd656362..f6923325437f78cc04e2540db8a1d58e13dc758a 100644
--- a/net/tools/quic/quic_server_session.cc
+++ b/net/tools/quic/quic_server_session.cc
@@ -11,10 +11,13 @@
namespace net {
namespace tools {
-QuicServerSession::QuicServerSession(QuicConnection* connection,
- QuicSessionOwner* owner)
+QuicServerSession::QuicServerSession(
+ const QuicConfig& config,
+ const QuicCryptoServerConfig& crypto_config,
+ QuicConnection* connection,
+ QuicSessionOwner* owner)
: QuicSession(connection, true),
- crypto_stream_(this),
+ crypto_stream_(config, crypto_config, this),
owner_(owner) {
}
« no previous file with comments | « net/tools/quic/quic_server_session.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698