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/quic/quic_crypto_client_stream.h" | 5 #include "net/quic/quic_crypto_client_stream.h" |
6 | 6 |
7 #include "base/metrics/histogram.h" | 7 #include "base/metrics/histogram.h" |
8 #include "base/profiler/scoped_tracker.h" | 8 #include "base/profiler/scoped_tracker.h" |
9 #include "net/quic/crypto/crypto_protocol.h" | 9 #include "net/quic/crypto/crypto_protocol.h" |
10 #include "net/quic/crypto/crypto_utils.h" | 10 #include "net/quic/crypto/crypto_utils.h" |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 : QuicCryptoStream(session), | 80 : QuicCryptoStream(session), |
81 next_state_(STATE_IDLE), | 81 next_state_(STATE_IDLE), |
82 num_client_hellos_(0), | 82 num_client_hellos_(0), |
83 crypto_config_(crypto_config), | 83 crypto_config_(crypto_config), |
84 server_id_(server_id), | 84 server_id_(server_id), |
85 generation_counter_(0), | 85 generation_counter_(0), |
86 channel_id_sent_(false), | 86 channel_id_sent_(false), |
87 channel_id_source_callback_run_(false), | 87 channel_id_source_callback_run_(false), |
88 channel_id_source_callback_(nullptr), | 88 channel_id_source_callback_(nullptr), |
89 verify_context_(verify_context), | 89 verify_context_(verify_context), |
90 proof_verify_callback_(nullptr) {} | 90 proof_verify_callback_(nullptr) { |
| 91 DCHECK(!session->connection()->is_server()); |
| 92 } |
91 | 93 |
92 QuicCryptoClientStream::~QuicCryptoClientStream() { | 94 QuicCryptoClientStream::~QuicCryptoClientStream() { |
93 if (channel_id_source_callback_) { | 95 if (channel_id_source_callback_) { |
94 channel_id_source_callback_->Cancel(); | 96 channel_id_source_callback_->Cancel(); |
95 } | 97 } |
96 if (proof_verify_callback_) { | 98 if (proof_verify_callback_) { |
97 proof_verify_callback_->Cancel(); | 99 proof_verify_callback_->Cancel(); |
98 } | 100 } |
99 } | 101 } |
100 | 102 |
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 } | 655 } |
654 } | 656 } |
655 return false; | 657 return false; |
656 } | 658 } |
657 | 659 |
658 QuicClientSessionBase* QuicCryptoClientStream::client_session() { | 660 QuicClientSessionBase* QuicCryptoClientStream::client_session() { |
659 return reinterpret_cast<QuicClientSessionBase*>(session()); | 661 return reinterpret_cast<QuicClientSessionBase*>(session()); |
660 } | 662 } |
661 | 663 |
662 } // namespace net | 664 } // namespace net |
OLD | NEW |