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

Side by Side Diff: webrtc/p2p/base/transportchannel.cc

Issue 1453523002: Allow remote fingerprint update during a call (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: rebase Created 5 years 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 | « webrtc/p2p/base/transportchannel.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2004 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 SignalWritableState(this); 44 SignalWritableState(this);
45 } 45 }
46 46
47 void TransportChannel::set_dtls_state(DtlsTransportState state) { 47 void TransportChannel::set_dtls_state(DtlsTransportState state) {
48 if (dtls_state_ == state) { 48 if (dtls_state_ == state) {
49 return; 49 return;
50 } 50 }
51 LOG_J(LS_VERBOSE, this) << "set_dtls_state from:" << dtls_state_ << " to " 51 LOG_J(LS_VERBOSE, this) << "set_dtls_state from:" << dtls_state_ << " to "
52 << state; 52 << state;
53 dtls_state_ = state; 53 dtls_state_ = state;
54 SignalDtlsState(this); 54 SignalDtlsState(this, state);
55 } 55 }
56 56
57 bool TransportChannel::SetSrtpCryptoSuites(const std::vector<int>& ciphers) { 57 bool TransportChannel::SetSrtpCryptoSuites(const std::vector<int>& ciphers) {
58 return false; 58 return false;
59 } 59 }
60 60
61 // TODO(guoweis): Remove this function once everything is moved away. 61 // TODO(guoweis): Remove this function once everything is moved away.
62 bool TransportChannel::SetSrtpCiphers(const std::vector<std::string>& ciphers) { 62 bool TransportChannel::SetSrtpCiphers(const std::vector<std::string>& ciphers) {
63 std::vector<int> crypto_suites; 63 std::vector<int> crypto_suites;
64 for (const auto cipher : ciphers) { 64 for (const auto cipher : ciphers) {
65 crypto_suites.push_back(rtc::SrtpCryptoSuiteFromName(cipher)); 65 crypto_suites.push_back(rtc::SrtpCryptoSuiteFromName(cipher));
66 } 66 }
67 return SetSrtpCryptoSuites(crypto_suites); 67 return SetSrtpCryptoSuites(crypto_suites);
68 } 68 }
69 69
70 } // namespace cricket 70 } // namespace cricket
OLDNEW
« no previous file with comments | « webrtc/p2p/base/transportchannel.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698