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 |
11 #include "webrtc/base/asyncudpsocket.h" | 11 #include "webrtc/base/asyncudpsocket.h" |
12 #include "webrtc/base/logging.h" | 12 #include "webrtc/base/logging.h" |
13 | 13 |
14 namespace rtc { | 14 namespace rtc { |
15 | 15 |
16 static const int BUF_SIZE = 64 * 1024; | 16 static const int BUF_SIZE = 64 * 1024; |
17 | 17 |
18 AsyncUDPSocket* AsyncUDPSocket::Create( | 18 AsyncUDPSocket* AsyncUDPSocket::Create( |
19 AsyncSocket* socket, | 19 AsyncSocket* socket, |
20 const SocketAddress& bind_address) { | 20 const SocketAddress& bind_address) { |
21 scoped_ptr<AsyncSocket> owned_socket(socket); | 21 std::unique_ptr<AsyncSocket> owned_socket(socket); |
22 if (socket->Bind(bind_address) < 0) { | 22 if (socket->Bind(bind_address) < 0) { |
23 LOG(LS_ERROR) << "Bind() failed with error " << socket->GetError(); | 23 LOG(LS_ERROR) << "Bind() failed with error " << socket->GetError(); |
24 return NULL; | 24 return NULL; |
25 } | 25 } |
26 return new AsyncUDPSocket(owned_socket.release()); | 26 return new AsyncUDPSocket(owned_socket.release()); |
27 } | 27 } |
28 | 28 |
29 AsyncUDPSocket* AsyncUDPSocket::Create(SocketFactory* factory, | 29 AsyncUDPSocket* AsyncUDPSocket::Create(SocketFactory* factory, |
30 const SocketAddress& bind_address) { | 30 const SocketAddress& bind_address) { |
31 AsyncSocket* socket = | 31 AsyncSocket* socket = |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 // If we did not, then we should resize our buffer to be large enough. | 118 // If we did not, then we should resize our buffer to be large enough. |
119 SignalReadPacket(this, buf_, static_cast<size_t>(len), remote_addr, | 119 SignalReadPacket(this, buf_, static_cast<size_t>(len), remote_addr, |
120 CreatePacketTime(0)); | 120 CreatePacketTime(0)); |
121 } | 121 } |
122 | 122 |
123 void AsyncUDPSocket::OnWriteEvent(AsyncSocket* socket) { | 123 void AsyncUDPSocket::OnWriteEvent(AsyncSocket* socket) { |
124 SignalReadyToSend(this); | 124 SignalReadyToSend(this); |
125 } | 125 } |
126 | 126 |
127 } // namespace rtc | 127 } // namespace rtc |
OLD | NEW |