OLD | NEW |
---|---|
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 1147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1158 if (old_best_connection) { | 1158 if (old_best_connection) { |
1159 LOG_J(LS_INFO, this) << "Previous best connection: " | 1159 LOG_J(LS_INFO, this) << "Previous best connection: " |
1160 << old_best_connection->ToString(); | 1160 << old_best_connection->ToString(); |
1161 } | 1161 } |
1162 LOG_J(LS_INFO, this) << "New best connection: " | 1162 LOG_J(LS_INFO, this) << "New best connection: " |
1163 << best_connection_->ToString(); | 1163 << best_connection_->ToString(); |
1164 SignalRouteChange(this, best_connection_->remote_candidate()); | 1164 SignalRouteChange(this, best_connection_->remote_candidate()); |
1165 } else { | 1165 } else { |
1166 LOG_J(LS_INFO, this) << "No best connection"; | 1166 LOG_J(LS_INFO, this) << "No best connection"; |
1167 } | 1167 } |
1168 SignalBestConnectionChanged(this, best_connection_); | |
pthatcher1
2016/03/24 18:46:37
It would be nice to call this selected_connection_
honghaiz3
2016/03/24 22:37:12
I added a TODO here, will make that change in a se
| |
1168 } | 1169 } |
1169 | 1170 |
1170 // Warning: UpdateState should eventually be called whenever a connection | 1171 // Warning: UpdateState should eventually be called whenever a connection |
1171 // is added, deleted, or the write state of any connection changes so that the | 1172 // is added, deleted, or the write state of any connection changes so that the |
1172 // transport controller will get the up-to-date channel state. However it | 1173 // transport controller will get the up-to-date channel state. However it |
1173 // should not be called too often; in the case that multiple connection states | 1174 // should not be called too often; in the case that multiple connection states |
1174 // change, it should be called after all the connection states have changed. For | 1175 // change, it should be called after all the connection states have changed. For |
1175 // example, we call this at the end of SortConnections. | 1176 // example, we call this at the end of SortConnections. |
1176 void P2PTransportChannel::UpdateState() { | 1177 void P2PTransportChannel::UpdateState() { |
1177 state_ = ComputeState(); | 1178 state_ = ComputeState(); |
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1619 | 1620 |
1620 // During the initial state when nothing has been pinged yet, return the first | 1621 // During the initial state when nothing has been pinged yet, return the first |
1621 // one in the ordered |connections_|. | 1622 // one in the ordered |connections_|. |
1622 return *(std::find_if(connections_.begin(), connections_.end(), | 1623 return *(std::find_if(connections_.begin(), connections_.end(), |
1623 [conn1, conn2](Connection* conn) { | 1624 [conn1, conn2](Connection* conn) { |
1624 return conn == conn1 || conn == conn2; | 1625 return conn == conn1 || conn == conn2; |
1625 })); | 1626 })); |
1626 } | 1627 } |
1627 | 1628 |
1628 } // namespace cricket | 1629 } // namespace cricket |
OLD | NEW |