| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SERVER_SOCKET_H_ | 5 #ifndef NET_SOCKET_UDP_SERVER_SOCKET_H_ |
| 6 #define NET_SOCKET_UDP_SERVER_SOCKET_H_ | 6 #define NET_SOCKET_UDP_SERVER_SOCKET_H_ |
| 7 | 7 |
| 8 #include "net/base/completion_callback.h" | 8 #include "net/base/completion_callback.h" |
| 9 #include "net/base/net_util.h" | 9 #include "net/base/net_util.h" |
| 10 #include "net/udp/datagram_server_socket.h" | 10 #include "net/udp/datagram_server_socket.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 virtual void Close() OVERRIDE; | 37 virtual void Close() OVERRIDE; |
| 38 virtual int GetPeerAddress(IPEndPoint* address) const OVERRIDE; | 38 virtual int GetPeerAddress(IPEndPoint* address) const OVERRIDE; |
| 39 virtual int GetLocalAddress(IPEndPoint* address) const OVERRIDE; | 39 virtual int GetLocalAddress(IPEndPoint* address) const OVERRIDE; |
| 40 virtual const BoundNetLog& NetLog() const OVERRIDE; | 40 virtual const BoundNetLog& NetLog() const OVERRIDE; |
| 41 virtual void AllowAddressReuse() OVERRIDE; | 41 virtual void AllowAddressReuse() OVERRIDE; |
| 42 virtual void AllowBroadcast() OVERRIDE; | 42 virtual void AllowBroadcast() OVERRIDE; |
| 43 virtual int JoinGroup(const IPAddressNumber& group_address) const OVERRIDE; | 43 virtual int JoinGroup(const IPAddressNumber& group_address) const OVERRIDE; |
| 44 virtual int LeaveGroup(const IPAddressNumber& group_address) const OVERRIDE; | 44 virtual int LeaveGroup(const IPAddressNumber& group_address) const OVERRIDE; |
| 45 virtual int SetMulticastTimeToLive(int time_to_live) OVERRIDE; | 45 virtual int SetMulticastTimeToLive(int time_to_live) OVERRIDE; |
| 46 virtual int SetMulticastLoopbackMode(bool loopback) OVERRIDE; | 46 virtual int SetMulticastLoopbackMode(bool loopback) OVERRIDE; |
| 47 virtual int SetToS(DiffServCodePoint dscp) OVERRIDE; |
| 47 | 48 |
| 48 private: | 49 private: |
| 49 UDPSocket socket_; | 50 UDPSocket socket_; |
| 50 DISALLOW_COPY_AND_ASSIGN(UDPServerSocket); | 51 DISALLOW_COPY_AND_ASSIGN(UDPServerSocket); |
| 51 }; | 52 }; |
| 52 | 53 |
| 53 } // namespace net | 54 } // namespace net |
| 54 | 55 |
| 55 #endif // NET_SOCKET_UDP_SERVER_SOCKET_H_ | 56 #endif // NET_SOCKET_UDP_SERVER_SOCKET_H_ |
| OLD | NEW |