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

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

Issue 2041593002: Revert "Revert of Update the BWE when the network route changes. (patchset #5 id:180001 of https://… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Mark a route as disconnect if it is not ready to send media Created 4 years, 6 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 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 1170 matching lines...) Expand 10 before | Expand all | Expand 10 after
1181 // TODO(honghaiz): Make all EWOULDBLOCK error routed through the transport 1181 // TODO(honghaiz): Make all EWOULDBLOCK error routed through the transport
1182 // channel so that it knows whether the media channel is allowed to 1182 // channel so that it knows whether the media channel is allowed to
1183 // send; then it will only signal ready-to-send if the media channel 1183 // send; then it will only signal ready-to-send if the media channel
1184 // has been disallowed to send. 1184 // has been disallowed to send.
1185 if (best_connection_->writable()) { 1185 if (best_connection_->writable()) {
1186 SignalReadyToSend(this); 1186 SignalReadyToSend(this);
1187 } 1187 }
1188 } else { 1188 } else {
1189 LOG_J(LS_INFO, this) << "No best connection"; 1189 LOG_J(LS_INFO, this) << "No best connection";
1190 } 1190 }
1191
1191 // TODO(honghaiz): rename best_connection_ with selected_connection_ or 1192 // TODO(honghaiz): rename best_connection_ with selected_connection_ or
1192 // selected_candidate pair_. 1193 // selected_candidate pair_.
1193 SignalSelectedCandidatePairChanged(this, best_connection_, 1194 SignalSelectedCandidatePairChanged(this, best_connection_,
1194 last_sent_packet_id_); 1195 last_sent_packet_id_);
1195 } 1196 }
1196 1197
1197 // Warning: UpdateState should eventually be called whenever a connection 1198 // Warning: UpdateState should eventually be called whenever a connection
1198 // is added, deleted, or the write state of any connection changes so that the 1199 // is added, deleted, or the write state of any connection changes so that the
1199 // transport controller will get the up-to-date channel state. However it 1200 // transport controller will get the up-to-date channel state. However it
1200 // should not be called too often; in the case that multiple connection states 1201 // should not be called too often; in the case that multiple connection states
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
1688 1689
1689 // During the initial state when nothing has been pinged yet, return the first 1690 // During the initial state when nothing has been pinged yet, return the first
1690 // one in the ordered |connections_|. 1691 // one in the ordered |connections_|.
1691 return *(std::find_if(connections_.begin(), connections_.end(), 1692 return *(std::find_if(connections_.begin(), connections_.end(),
1692 [conn1, conn2](Connection* conn) { 1693 [conn1, conn2](Connection* conn) {
1693 return conn == conn1 || conn == conn2; 1694 return conn == conn1 || conn == conn2;
1694 })); 1695 }));
1695 } 1696 }
1696 1697
1697 } // namespace cricket 1698 } // namespace cricket
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698