| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_SOCKET_UDP_CLIENT_SOCKET_H_ | 5 #ifndef NET_SOCKET_UDP_CLIENT_SOCKET_H_ |
| 6 #define NET_SOCKET_UDP_CLIENT_SOCKET_H_ | 6 #define NET_SOCKET_UDP_CLIENT_SOCKET_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "net/base/net_log.h" | 9 #include "net/base/net_log.h" |
| 10 #include "net/base/rand_callback.h" | 10 #include "net/base/rand_callback.h" |
| 11 #include "net/udp/datagram_client_socket.h" | 11 #include "net/udp/datagram_client_socket.h" |
| 12 #include "net/udp/udp_socket.h" | 12 #include "net/udp/udp_socket.h" |
| 13 | 13 |
| 14 namespace net { | 14 namespace net { |
| 15 | 15 |
| 16 class BoundNetLog; | 16 class BoundNetLog; |
| 17 | 17 |
| 18 // A client socket that uses UDP as the transport layer. | 18 // A client socket that uses UDP as the transport layer. |
| 19 class NET_EXPORT_PRIVATE UDPClientSocket : public DatagramClientSocket { | 19 class NET_EXPORT_PRIVATE UDPClientSocket : public DatagramClientSocket { |
| 20 public: | 20 public: |
| 21 UDPClientSocket(DatagramSocket::BindType bind_type, | 21 UDPClientSocket(DatagramSocket::BindType bind_type, |
| 22 const RandIntCallback& rand_int_cb, | 22 const RandIntCallback& rand_int_cb, |
| 23 net::NetLog* net_log, | 23 net::NetLog* net_log, |
| 24 const net::NetLog::Source& source); | 24 const net::NetLog::Source& source); |
| 25 virtual ~UDPClientSocket(); | 25 virtual ~UDPClientSocket(); |
| 26 | 26 |
| 27 // Implement DatagramClientSocket: | 27 // DatagramClientSocket implementation. |
| 28 virtual int Connect(const IPEndPoint& address) OVERRIDE; | 28 virtual int Connect(const IPEndPoint& address) OVERRIDE; |
| 29 virtual int Read(IOBuffer* buf, int buf_len, | 29 virtual int Read(IOBuffer* buf, int buf_len, |
| 30 OldCompletionCallback* callback) OVERRIDE; | 30 OldCompletionCallback* callback) OVERRIDE; |
| 31 virtual int Read(IOBuffer* buf, int buf_len, |
| 32 const CompletionCallback& callback) OVERRIDE; |
| 31 virtual int Write(IOBuffer* buf, int buf_len, | 33 virtual int Write(IOBuffer* buf, int buf_len, |
| 32 OldCompletionCallback* callback) OVERRIDE; | 34 OldCompletionCallback* callback) OVERRIDE; |
| 33 virtual void Close() OVERRIDE; | 35 virtual void Close() OVERRIDE; |
| 34 virtual int GetPeerAddress(IPEndPoint* address) const OVERRIDE; | 36 virtual int GetPeerAddress(IPEndPoint* address) const OVERRIDE; |
| 35 virtual int GetLocalAddress(IPEndPoint* address) const OVERRIDE; | 37 virtual int GetLocalAddress(IPEndPoint* address) const OVERRIDE; |
| 36 virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; | 38 virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; |
| 37 virtual bool SetSendBufferSize(int32 size) OVERRIDE; | 39 virtual bool SetSendBufferSize(int32 size) OVERRIDE; |
| 38 virtual const BoundNetLog& NetLog() const OVERRIDE; | 40 virtual const BoundNetLog& NetLog() const OVERRIDE; |
| 39 | 41 |
| 40 private: | 42 private: |
| 41 UDPSocket socket_; | 43 UDPSocket socket_; |
| 42 DISALLOW_COPY_AND_ASSIGN(UDPClientSocket); | 44 DISALLOW_COPY_AND_ASSIGN(UDPClientSocket); |
| 43 }; | 45 }; |
| 44 | 46 |
| 45 } // namespace net | 47 } // namespace net |
| 46 | 48 |
| 47 #endif // NET_SOCKET_UDP_CLIENT_SOCKET_H_ | 49 #endif // NET_SOCKET_UDP_CLIENT_SOCKET_H_ |
| OLD | NEW |