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 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
598 ASSERT(false); | 598 ASSERT(false); |
599 port->SendBindingErrorResponse(stun_msg, address, STUN_ERROR_SERVER_ERROR, | 599 port->SendBindingErrorResponse(stun_msg, address, STUN_ERROR_SERVER_ERROR, |
600 STUN_ERROR_REASON_SERVER_ERROR); | 600 STUN_ERROR_REASON_SERVER_ERROR); |
601 return; | 601 return; |
602 } | 602 } |
603 | 603 |
604 LOG(LS_INFO) << "Adding connection from " | 604 LOG(LS_INFO) << "Adding connection from " |
605 << (remote_candidate_is_new ? "peer reflexive" : "resurrected") | 605 << (remote_candidate_is_new ? "peer reflexive" : "resurrected") |
606 << " candidate: " << remote_candidate.ToString(); | 606 << " candidate: " << remote_candidate.ToString(); |
607 AddConnection(connection); | 607 AddConnection(connection); |
608 connection->ReceivedPing(); | 608 connection->HandleBindingRequest(stun_msg); |
609 | |
610 bool received_use_candidate = | |
611 stun_msg->GetByteString(STUN_ATTR_USE_CANDIDATE) != nullptr; | |
612 if (received_use_candidate && ice_role_ == ICEROLE_CONTROLLED) { | |
613 connection->set_nominated(true); | |
614 OnNominated(connection); | |
615 } | |
616 | 609 |
617 // Update the list of connections since we just added another. We do this | 610 // Update the list of connections since we just added another. We do this |
618 // after sending the response since it could (in principle) delete the | 611 // after sending the response since it could (in principle) delete the |
619 // connection in question. | 612 // connection in question. |
620 SortConnections(); | 613 SortConnections(); |
621 } | 614 } |
622 | 615 |
623 void P2PTransportChannel::OnRoleConflict(PortInterface* port) { | 616 void P2PTransportChannel::OnRoleConflict(PortInterface* port) { |
624 SignalRoleConflict(this); // STUN ping will be sent when SetRole is called | 617 SignalRoleConflict(this); // STUN ping will be sent when SetRole is called |
625 // from Transport. | 618 // from Transport. |
(...skipping 759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1385 SignalSentPacket(this, sent_packet); | 1378 SignalSentPacket(this, sent_packet); |
1386 } | 1379 } |
1387 | 1380 |
1388 void P2PTransportChannel::OnReadyToSend(Connection* connection) { | 1381 void P2PTransportChannel::OnReadyToSend(Connection* connection) { |
1389 if (connection == best_connection_ && writable()) { | 1382 if (connection == best_connection_ && writable()) { |
1390 SignalReadyToSend(this); | 1383 SignalReadyToSend(this); |
1391 } | 1384 } |
1392 } | 1385 } |
1393 | 1386 |
1394 } // namespace cricket | 1387 } // namespace cricket |
OLD | NEW |