#ifndef COMPONENTS_OPENSCREEN_PLATFORM_NETWORK_UTIL_H_
#define COMPONENTS_OPENSCREEN_PLATFORM_NETWORK_UTIL_H_
#include "net/base/address_family.h"
#include "third_party/openscreen/src/platform/base/ip_address.h"
namespace net {
class IPAddress;
class IPEndPoint;
}
namespace openscreen_platform {
const net::IPAddress ToNetAddress(const openscreen::IPAddress& address);
const net::IPEndPoint ToNetEndPoint(const openscreen::IPEndpoint& endpoint);
openscreen::IPAddress::Version ToOpenScreenVersion(
const net::AddressFamily family);
const openscreen::IPEndpoint ToOpenScreenEndPoint(
const net::IPEndPoint& endpoint);
}
#endif