blob: 06e4752b551206beef4f132c7a0c29b30725c368 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_WEBRTC_NET_ADDRESS_UTILS_H_
#define COMPONENTS_WEBRTC_NET_ADDRESS_UTILS_H_
#include <string>
#include "third_party/webrtc/rtc_base/ip_address.h"
namespace net {
class IPAddress;
class IPEndPoint;
} // namespace net
namespace rtc {
class SocketAddress;
} // namespace rtc
namespace cricket {
class Candidate;
} // namespace cricket
namespace webrtc {
// Chromium and libjingle represent socket addresses differently. The
// following two functions are used to convert addresses from one
// representation to another.
bool IPEndPointToSocketAddress(const net::IPEndPoint& ip_endpoint,
rtc::SocketAddress* address);
bool SocketAddressToIPEndPoint(const rtc::SocketAddress& address,
net::IPEndPoint* ip_endpoint);
rtc::IPAddress NetIPAddressToRtcIPAddress(const net::IPAddress& ip_address);
net::IPAddress RtcIPAddressToNetIPAddress(const rtc::IPAddress& ip_address);
// Helper functions to serialize and deserialize P2P candidates.
std::string SerializeP2PCandidate(const cricket::Candidate& candidate);
bool DeserializeP2PCandidate(const std::string& address,
cricket::Candidate* candidate);
} // namespace webrtc
#endif // COMPONENTS_WEBRTC_NET_ADDRESS_UTILS_H_
|