OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2016 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 |
11 #include "webrtc/p2p/base/udptransport.h" | 11 #include "webrtc/p2p/base/udptransport.h" |
12 | 12 |
13 #include <string> | 13 #include <string> |
14 #include <utility> // For std::move. | 14 #include <utility> // For std::move. |
15 | 15 |
16 #include "webrtc/base/asyncudpsocket.h" | 16 #include "webrtc/rtc_base/asyncpacketsocket.h" |
17 #include "webrtc/base/asyncpacketsocket.h" | 17 #include "webrtc/rtc_base/asyncudpsocket.h" |
18 #include "webrtc/base/logging.h" | 18 #include "webrtc/rtc_base/logging.h" |
19 #include "webrtc/base/socketaddress.h" | 19 #include "webrtc/rtc_base/socketaddress.h" |
20 #include "webrtc/base/thread.h" | 20 #include "webrtc/rtc_base/thread.h" |
21 #include "webrtc/base/thread_checker.h" | 21 #include "webrtc/rtc_base/thread_checker.h" |
22 | 22 |
23 namespace cricket { | 23 namespace cricket { |
24 | 24 |
25 UdpTransport::UdpTransport(const std::string& transport_name, | 25 UdpTransport::UdpTransport(const std::string& transport_name, |
26 std::unique_ptr<rtc::AsyncPacketSocket> socket) | 26 std::unique_ptr<rtc::AsyncPacketSocket> socket) |
27 : transport_name_(transport_name), socket_(std::move(socket)) { | 27 : transport_name_(transport_name), socket_(std::move(socket)) { |
28 RTC_DCHECK(socket_); | 28 RTC_DCHECK(socket_); |
29 socket_->SignalReadPacket.connect(this, &UdpTransport::OnSocketReadPacket); | 29 socket_->SignalReadPacket.connect(this, &UdpTransport::OnSocketReadPacket); |
30 socket_->SignalSentPacket.connect(this, &UdpTransport::OnSocketSentPacket); | 30 socket_->SignalSentPacket.connect(this, &UdpTransport::OnSocketSentPacket); |
31 } | 31 } |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 SignalReadPacket(this, data, len, packet_time, 0); | 95 SignalReadPacket(this, data, len, packet_time, 0); |
96 } | 96 } |
97 | 97 |
98 void UdpTransport::OnSocketSentPacket(rtc::AsyncPacketSocket* socket, | 98 void UdpTransport::OnSocketSentPacket(rtc::AsyncPacketSocket* socket, |
99 const rtc::SentPacket& packet) { | 99 const rtc::SentPacket& packet) { |
100 RTC_DCHECK_EQ(socket_.get(), socket); | 100 RTC_DCHECK_EQ(socket_.get(), socket); |
101 SignalSentPacket(this, packet); | 101 SignalSentPacket(this, packet); |
102 } | 102 } |
103 | 103 |
104 } // namespace cricket | 104 } // namespace cricket |
OLD | NEW |