| 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 PPAPI_SHARED_IMPL_PRIVATE_NET_ADDRESS_PRIVATE_IMPL_H_ | 5 #ifndef PPAPI_SHARED_IMPL_PRIVATE_NET_ADDRESS_PRIVATE_IMPL_H_ |
| 6 #define PPAPI_SHARED_IMPL_PRIVATE_NET_ADDRESS_PRIVATE_IMPL_H_ | 6 #define PPAPI_SHARED_IMPL_PRIVATE_NET_ADDRESS_PRIVATE_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/macros.h" |
| 12 #include "ppapi/c/pp_stdint.h" | 12 #include "ppapi/c/pp_stdint.h" |
| 13 #include "ppapi/c/ppb_net_address.h" | 13 #include "ppapi/c/ppb_net_address.h" |
| 14 #include "ppapi/shared_impl/ppapi_shared_export.h" | 14 #include "ppapi/shared_impl/ppapi_shared_export.h" |
| 15 | 15 |
| 16 struct PP_NetAddress_Private; | 16 struct PP_NetAddress_Private; |
| 17 struct sockaddr; | 17 struct sockaddr; |
| 18 | 18 |
| 19 namespace ppapi { | 19 namespace ppapi { |
| 20 | 20 |
| 21 class PPAPI_SHARED_EXPORT NetAddressPrivateImpl { | 21 class PPAPI_SHARED_EXPORT NetAddressPrivateImpl { |
| 22 public: | 22 public: |
| 23 static bool ValidateNetAddress(const PP_NetAddress_Private& addr); | 23 static bool ValidateNetAddress(const PP_NetAddress_Private& addr); |
| 24 | 24 |
| 25 static bool SockaddrToNetAddress(const sockaddr* sa, | 25 static bool SockaddrToNetAddress(const sockaddr* sa, |
| 26 uint32_t sa_length, | 26 uint32_t sa_length, |
| 27 PP_NetAddress_Private* net_addr); | 27 PP_NetAddress_Private* net_addr); |
| 28 | 28 |
| 29 static bool IPEndPointToNetAddress(const std::vector<unsigned char>& address, | 29 static bool IPEndPointToNetAddress(const std::vector<unsigned char>& address, |
| 30 uint16 port, | 30 uint16_t port, |
| 31 PP_NetAddress_Private* net_addr); | 31 PP_NetAddress_Private* net_addr); |
| 32 | 32 |
| 33 static bool NetAddressToIPEndPoint(const PP_NetAddress_Private& net_addr, | 33 static bool NetAddressToIPEndPoint(const PP_NetAddress_Private& net_addr, |
| 34 std::vector<unsigned char>* address, | 34 std::vector<unsigned char>* address, |
| 35 uint16* port); | 35 uint16_t* port); |
| 36 | 36 |
| 37 static std::string DescribeNetAddress(const PP_NetAddress_Private& addr, | 37 static std::string DescribeNetAddress(const PP_NetAddress_Private& addr, |
| 38 bool include_port); | 38 bool include_port); |
| 39 | 39 |
| 40 static void GetAnyAddress(PP_Bool is_ipv6, PP_NetAddress_Private* addr); | 40 static void GetAnyAddress(PP_Bool is_ipv6, PP_NetAddress_Private* addr); |
| 41 | 41 |
| 42 // Conversion methods to make PPB_NetAddress resource work with | 42 // Conversion methods to make PPB_NetAddress resource work with |
| 43 // PP_NetAddress_Private. | 43 // PP_NetAddress_Private. |
| 44 // TODO(yzshen): Remove them once PPB_NetAddress resource doesn't use | 44 // TODO(yzshen): Remove them once PPB_NetAddress resource doesn't use |
| 45 // PP_NetAddress_Private as storage type. | 45 // PP_NetAddress_Private as storage type. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 60 | 60 |
| 61 static const PP_NetAddress_Private kInvalidNetAddress; | 61 static const PP_NetAddress_Private kInvalidNetAddress; |
| 62 | 62 |
| 63 private: | 63 private: |
| 64 DISALLOW_IMPLICIT_CONSTRUCTORS(NetAddressPrivateImpl); | 64 DISALLOW_IMPLICIT_CONSTRUCTORS(NetAddressPrivateImpl); |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 } // namespace ppapi | 67 } // namespace ppapi |
| 68 | 68 |
| 69 #endif // PPAPI_SHARED_IMPL_PRIVATE_NET_ADDRESS_PRIVATE_IMPL_H_ | 69 #endif // PPAPI_SHARED_IMPL_PRIVATE_NET_ADDRESS_PRIVATE_IMPL_H_ |
| OLD | NEW |