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

Side by Side Diff: net/tools/quic/quic_server_session.cc

Issue 288313003: Land Recent QUIC Changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src
Patch Set: implemented rch's comments Created 6 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/tools/quic/quic_server_session.h" 5 #include "net/tools/quic/quic_server_session.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "net/quic/quic_connection.h" 8 #include "net/quic/quic_connection.h"
9 #include "net/quic/reliable_quic_stream.h" 9 #include "net/quic/reliable_quic_stream.h"
10 #include "net/tools/quic/quic_spdy_server_stream.h" 10 #include "net/tools/quic/quic_spdy_server_stream.h"
11 11
12 namespace net { 12 namespace net {
13 namespace tools { 13 namespace tools {
14 14
15 QuicServerSession::QuicServerSession( 15 QuicServerSession::QuicServerSession(const QuicConfig& config,
16 const QuicConfig& config, 16 QuicConnection* connection,
17 QuicConnection* connection, 17 uint32 max_flow_control_window_bytes,
18 QuicServerSessionVisitor* visitor) 18 QuicServerSessionVisitor* visitor)
19 : QuicSession(connection, config), 19 : QuicSession(connection, max_flow_control_window_bytes, config),
20 visitor_(visitor) {} 20 visitor_(visitor) {}
21 21
22 QuicServerSession::~QuicServerSession() {} 22 QuicServerSession::~QuicServerSession() {}
23 23
24 void QuicServerSession::InitializeSession( 24 void QuicServerSession::InitializeSession(
25 const QuicCryptoServerConfig& crypto_config) { 25 const QuicCryptoServerConfig& crypto_config) {
26 crypto_stream_.reset(CreateQuicCryptoServerStream(crypto_config)); 26 crypto_stream_.reset(CreateQuicCryptoServerStream(crypto_config));
27 } 27 }
28 28
29 QuicCryptoServerStream* QuicServerSession::CreateQuicCryptoServerStream( 29 QuicCryptoServerStream* QuicServerSession::CreateQuicCryptoServerStream(
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 DLOG(ERROR) << "Server push not yet supported"; 75 DLOG(ERROR) << "Server push not yet supported";
76 return NULL; 76 return NULL;
77 } 77 }
78 78
79 QuicCryptoServerStream* QuicServerSession::GetCryptoStream() { 79 QuicCryptoServerStream* QuicServerSession::GetCryptoStream() {
80 return crypto_stream_.get(); 80 return crypto_stream_.get();
81 } 81 }
82 82
83 } // namespace tools 83 } // namespace tools
84 } // namespace net 84 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698