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 965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
976 ASSERT(worker_thread_ == rtc::Thread::Current()); | 976 ASSERT(worker_thread_ == rtc::Thread::Current()); |
977 if (flags != 0) { | 977 if (flags != 0) { |
978 error_ = EINVAL; | 978 error_ = EINVAL; |
979 return -1; | 979 return -1; |
980 } | 980 } |
981 if (best_connection_ == NULL) { | 981 if (best_connection_ == NULL) { |
982 error_ = EWOULDBLOCK; | 982 error_ = EWOULDBLOCK; |
983 return -1; | 983 return -1; |
984 } | 984 } |
985 | 985 |
| 986 last_sent_packet_id_ = options.packet_id; |
986 int sent = best_connection_->Send(data, len, options); | 987 int sent = best_connection_->Send(data, len, options); |
987 if (sent <= 0) { | 988 if (sent <= 0) { |
988 ASSERT(sent < 0); | 989 ASSERT(sent < 0); |
989 error_ = best_connection_->GetError(); | 990 error_ = best_connection_->GetError(); |
990 } | 991 } |
991 return sent; | 992 return sent; |
992 } | 993 } |
993 | 994 |
994 bool P2PTransportChannel::GetStats(ConnectionInfos *infos) { | 995 bool P2PTransportChannel::GetStats(ConnectionInfos *infos) { |
995 ASSERT(worker_thread_ == rtc::Thread::Current()); | 996 ASSERT(worker_thread_ == rtc::Thread::Current()); |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1161 << old_best_connection->ToString(); | 1162 << old_best_connection->ToString(); |
1162 } | 1163 } |
1163 LOG_J(LS_INFO, this) << "New best connection: " | 1164 LOG_J(LS_INFO, this) << "New best connection: " |
1164 << best_connection_->ToString(); | 1165 << best_connection_->ToString(); |
1165 SignalRouteChange(this, best_connection_->remote_candidate()); | 1166 SignalRouteChange(this, best_connection_->remote_candidate()); |
1166 } else { | 1167 } else { |
1167 LOG_J(LS_INFO, this) << "No best connection"; | 1168 LOG_J(LS_INFO, this) << "No best connection"; |
1168 } | 1169 } |
1169 // TODO(honghaiz): rename best_connection_ with selected_connection_ or | 1170 // TODO(honghaiz): rename best_connection_ with selected_connection_ or |
1170 // selected_candidate pair_. | 1171 // selected_candidate pair_. |
1171 SignalSelectedCandidatePairChanged(this, best_connection_); | 1172 SignalSelectedCandidatePairChanged(this, best_connection_, |
| 1173 last_sent_packet_id_); |
1172 } | 1174 } |
1173 | 1175 |
1174 // Warning: UpdateState should eventually be called whenever a connection | 1176 // Warning: UpdateState should eventually be called whenever a connection |
1175 // is added, deleted, or the write state of any connection changes so that the | 1177 // is added, deleted, or the write state of any connection changes so that the |
1176 // transport controller will get the up-to-date channel state. However it | 1178 // transport controller will get the up-to-date channel state. However it |
1177 // should not be called too often; in the case that multiple connection states | 1179 // should not be called too often; in the case that multiple connection states |
1178 // change, it should be called after all the connection states have changed. For | 1180 // change, it should be called after all the connection states have changed. For |
1179 // example, we call this at the end of SortConnections. | 1181 // example, we call this at the end of SortConnections. |
1180 void P2PTransportChannel::UpdateState() { | 1182 void P2PTransportChannel::UpdateState() { |
1181 state_ = ComputeState(); | 1183 state_ = ComputeState(); |
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1623 | 1625 |
1624 // During the initial state when nothing has been pinged yet, return the first | 1626 // During the initial state when nothing has been pinged yet, return the first |
1625 // one in the ordered |connections_|. | 1627 // one in the ordered |connections_|. |
1626 return *(std::find_if(connections_.begin(), connections_.end(), | 1628 return *(std::find_if(connections_.begin(), connections_.end(), |
1627 [conn1, conn2](Connection* conn) { | 1629 [conn1, conn2](Connection* conn) { |
1628 return conn == conn1 || conn == conn2; | 1630 return conn == conn1 || conn == conn2; |
1629 })); | 1631 })); |
1630 } | 1632 } |
1631 | 1633 |
1632 } // namespace cricket | 1634 } // namespace cricket |
OLD | NEW |