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

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

Issue 612323013: QUIC - (no behavior change) s/NULL/nullptr/g in .../quic/... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « net/tools/quic/quic_client.cc ('k') | net/tools/quic/quic_client_session_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_client_session.h" 5 #include "net/tools/quic/quic_client_session.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "net/quic/crypto/crypto_protocol.h" 8 #include "net/quic/crypto/crypto_protocol.h"
9 #include "net/quic/quic_server_id.h" 9 #include "net/quic/quic_server_id.h"
10 #include "net/tools/quic/quic_spdy_client_stream.h" 10 #include "net/tools/quic/quic_spdy_client_stream.h"
11 11
12 using std::string; 12 using std::string;
13 13
14 namespace net { 14 namespace net {
15 namespace tools { 15 namespace tools {
16 16
17 QuicClientSession::QuicClientSession(const QuicConfig& config, 17 QuicClientSession::QuicClientSession(const QuicConfig& config,
18 QuicConnection* connection) 18 QuicConnection* connection)
19 : QuicClientSessionBase(connection, config) { 19 : QuicClientSessionBase(connection, config) {
20 } 20 }
21 21
22 QuicClientSession::~QuicClientSession() { 22 QuicClientSession::~QuicClientSession() {
23 } 23 }
24 24
25 void QuicClientSession::InitializeSession( 25 void QuicClientSession::InitializeSession(
26 const QuicServerId& server_id, 26 const QuicServerId& server_id,
27 QuicCryptoClientConfig* crypto_config) { 27 QuicCryptoClientConfig* crypto_config) {
28 QuicClientSessionBase::InitializeSession(); 28 QuicClientSessionBase::InitializeSession();
29 crypto_stream_.reset( 29 crypto_stream_.reset(
30 new QuicCryptoClientStream(server_id, this, NULL, crypto_config)); 30 new QuicCryptoClientStream(server_id, this, nullptr, crypto_config));
31 } 31 }
32 32
33 void QuicClientSession::OnProofValid( 33 void QuicClientSession::OnProofValid(
34 const QuicCryptoClientConfig::CachedState& /*cached*/) { 34 const QuicCryptoClientConfig::CachedState& /*cached*/) {
35 } 35 }
36 36
37 void QuicClientSession::OnProofVerifyDetailsAvailable( 37 void QuicClientSession::OnProofVerifyDetailsAvailable(
38 const ProofVerifyDetails& /*verify_details*/) { 38 const ProofVerifyDetails& /*verify_details*/) {
39 } 39 }
40 40
41 QuicSpdyClientStream* QuicClientSession::CreateOutgoingDataStream() { 41 QuicSpdyClientStream* QuicClientSession::CreateOutgoingDataStream() {
42 if (!crypto_stream_->encryption_established()) { 42 if (!crypto_stream_->encryption_established()) {
43 DVLOG(1) << "Encryption not active so no outgoing stream created."; 43 DVLOG(1) << "Encryption not active so no outgoing stream created.";
44 return NULL; 44 return nullptr;
45 } 45 }
46 if (GetNumOpenStreams() >= get_max_open_streams()) { 46 if (GetNumOpenStreams() >= get_max_open_streams()) {
47 DVLOG(1) << "Failed to create a new outgoing stream. " 47 DVLOG(1) << "Failed to create a new outgoing stream. "
48 << "Already " << GetNumOpenStreams() << " open."; 48 << "Already " << GetNumOpenStreams() << " open.";
49 return NULL; 49 return nullptr;
50 } 50 }
51 if (goaway_received()) { 51 if (goaway_received()) {
52 DVLOG(1) << "Failed to create a new outgoing stream. " 52 DVLOG(1) << "Failed to create a new outgoing stream. "
53 << "Already received goaway."; 53 << "Already received goaway.";
54 return NULL; 54 return nullptr;
55 } 55 }
56 QuicSpdyClientStream* stream 56 QuicSpdyClientStream* stream
57 = new QuicSpdyClientStream(GetNextStreamId(), this); 57 = new QuicSpdyClientStream(GetNextStreamId(), this);
58 ActivateStream(stream); 58 ActivateStream(stream);
59 return stream; 59 return stream;
60 } 60 }
61 61
62 QuicCryptoClientStream* QuicClientSession::GetCryptoStream() { 62 QuicCryptoClientStream* QuicClientSession::GetCryptoStream() {
63 return crypto_stream_.get(); 63 return crypto_stream_.get();
64 } 64 }
65 65
66 bool QuicClientSession::CryptoConnect() { 66 bool QuicClientSession::CryptoConnect() {
67 DCHECK(flow_controller()); 67 DCHECK(flow_controller());
68 return crypto_stream_->CryptoConnect(); 68 return crypto_stream_->CryptoConnect();
69 } 69 }
70 70
71 int QuicClientSession::GetNumSentClientHellos() const { 71 int QuicClientSession::GetNumSentClientHellos() const {
72 return crypto_stream_->num_sent_client_hellos(); 72 return crypto_stream_->num_sent_client_hellos();
73 } 73 }
74 74
75 QuicDataStream* QuicClientSession::CreateIncomingDataStream( 75 QuicDataStream* QuicClientSession::CreateIncomingDataStream(
76 QuicStreamId id) { 76 QuicStreamId id) {
77 DLOG(ERROR) << "Server push not supported"; 77 DLOG(ERROR) << "Server push not supported";
78 return NULL; 78 return nullptr;
79 } 79 }
80 80
81 } // namespace tools 81 } // namespace tools
82 } // namespace net 82 } // namespace net
OLDNEW
« no previous file with comments | « net/tools/quic/quic_client.cc ('k') | net/tools/quic/quic_client_session_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698