blob: 21c378a5087d8b7e80d138b0f31464f86673320b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PPAPI_CPP_PRIVATE_NET_ADDRESS_PRIVATE_H_
#define PPAPI_CPP_PRIVATE_NET_ADDRESS_PRIVATE_H_
#include <string>
#include "ppapi/c/pp_stdint.h"
struct PP_NetAddress_Private;
namespace pp {
class NetAddressPrivate {
public:
static bool AreEqual(const PP_NetAddress_Private& addr1,
const PP_NetAddress_Private& addr2);
static bool AreHostsEqual(const PP_NetAddress_Private& addr1,
const PP_NetAddress_Private& addr2);
static std::string Describe(const PP_NetAddress_Private& addr,
bool include_port);
static bool ReplacePort(const PP_NetAddress_Private& addr_in,
uint16_t port,
PP_NetAddress_Private* addr_out);
static void GetAnyAddress(bool is_ipv6, PP_NetAddress_Private* addr);
};
} // namespace pp
#endif // PPAPI_CPP_PRIVATE_NET_ADDRESS_PRIVATE_H_
|