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

Side by Side Diff: webrtc/p2p/base/dtlstransportchannel.h

Issue 2163683003: Relanding: Allow the DTLS fingerprint verification to occur after the handshake. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Responding to Peter's comments. Created 4 years, 4 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 /* 1 /*
2 * Copyright 2011 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2011 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 channel_->RemoveRemoteCandidate(candidate); 189 channel_->RemoveRemoteCandidate(candidate);
190 } 190 }
191 191
192 void SetIceConfig(const IceConfig& config) override { 192 void SetIceConfig(const IceConfig& config) override {
193 channel_->SetIceConfig(config); 193 channel_->SetIceConfig(config);
194 } 194 }
195 195
196 // Needed by DtlsTransport. 196 // Needed by DtlsTransport.
197 TransportChannelImpl* channel() { return channel_; } 197 TransportChannelImpl* channel() { return channel_; }
198 198
199 // For informational purposes. Tells if the DTLS handshake has finished.
200 // This may be true even if writable() is false, if the remote fingerprint
201 // has not yet been verified.
202 bool IsDtlsConnected();
203
199 private: 204 private:
200 void OnReadableState(TransportChannel* channel);
201 void OnWritableState(TransportChannel* channel); 205 void OnWritableState(TransportChannel* channel);
202 void OnReadPacket(TransportChannel* channel, const char* data, size_t size, 206 void OnReadPacket(TransportChannel* channel, const char* data, size_t size,
203 const rtc::PacketTime& packet_time, int flags); 207 const rtc::PacketTime& packet_time, int flags);
204 void OnSentPacket(TransportChannel* channel, 208 void OnSentPacket(TransportChannel* channel,
205 const rtc::SentPacket& sent_packet); 209 const rtc::SentPacket& sent_packet);
206 void OnReadyToSend(TransportChannel* channel); 210 void OnReadyToSend(TransportChannel* channel);
207 void OnReceivingState(TransportChannel* channel); 211 void OnReceivingState(TransportChannel* channel);
208 void OnDtlsEvent(rtc::StreamInterface* stream_, int sig, int err); 212 void OnDtlsEvent(rtc::StreamInterface* stream_, int sig, int err);
209 bool SetupDtls(); 213 bool SetupDtls();
210 void MaybeStartDtls(); 214 void MaybeStartDtls();
(...skipping 29 matching lines...) Expand all
240 // transport channel became writable, or before a remote fingerprint was 244 // transport channel became writable, or before a remote fingerprint was
241 // received. 245 // received.
242 rtc::Buffer cached_client_hello_; 246 rtc::Buffer cached_client_hello_;
243 247
244 RTC_DISALLOW_COPY_AND_ASSIGN(DtlsTransportChannelWrapper); 248 RTC_DISALLOW_COPY_AND_ASSIGN(DtlsTransportChannelWrapper);
245 }; 249 };
246 250
247 } // namespace cricket 251 } // namespace cricket
248 252
249 #endif // WEBRTC_P2P_BASE_DTLSTRANSPORTCHANNEL_H_ 253 #endif // WEBRTC_P2P_BASE_DTLSTRANSPORTCHANNEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698