| OLD | NEW |
| 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_session_key.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( | 17 QuicClientSession::QuicClientSession( |
| 18 const QuicSessionKey& server_key, | 18 const QuicServerId& server_id, |
| 19 const QuicConfig& config, | 19 const QuicConfig& config, |
| 20 QuicConnection* connection, | 20 QuicConnection* connection, |
| 21 QuicCryptoClientConfig* crypto_config) | 21 QuicCryptoClientConfig* crypto_config) |
| 22 : QuicClientSessionBase(connection, config), | 22 : QuicClientSessionBase(connection, config), |
| 23 crypto_stream_(server_key, this, NULL, crypto_config) { | 23 crypto_stream_(server_id, this, NULL, crypto_config) { |
| 24 } | 24 } |
| 25 | 25 |
| 26 QuicClientSession::~QuicClientSession() { | 26 QuicClientSession::~QuicClientSession() { |
| 27 } | 27 } |
| 28 | 28 |
| 29 void QuicClientSession::OnProofValid( | 29 void QuicClientSession::OnProofValid( |
| 30 const QuicCryptoClientConfig::CachedState& /*cached*/) { | 30 const QuicCryptoClientConfig::CachedState& /*cached*/) { |
| 31 } | 31 } |
| 32 | 32 |
| 33 void QuicClientSession::OnProofVerifyDetailsAvailable( | 33 void QuicClientSession::OnProofVerifyDetailsAvailable( |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 } | 68 } |
| 69 | 69 |
| 70 QuicDataStream* QuicClientSession::CreateIncomingDataStream( | 70 QuicDataStream* QuicClientSession::CreateIncomingDataStream( |
| 71 QuicStreamId id) { | 71 QuicStreamId id) { |
| 72 DLOG(ERROR) << "Server push not supported"; | 72 DLOG(ERROR) << "Server push not supported"; |
| 73 return NULL; | 73 return NULL; |
| 74 } | 74 } |
| 75 | 75 |
| 76 } // namespace tools | 76 } // namespace tools |
| 77 } // namespace net | 77 } // namespace net |
| OLD | NEW |