mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
Per XLS-0095, we are taking steps to rename ripple(d) to xrpl(d). This change specifically removes all copyright notices referencing Ripple, XRPLF, and certain affiliated contributors upon mutual agreement, so the notice in the LICENSE.md file applies throughout. Copyright notices referencing external contributions remain as-is. Duplicate verbiage is also removed.
66 lines
1.4 KiB
C++
66 lines
1.4 KiB
C++
#ifndef BEAST_NET_IPADDRESSCONVERSION_H_INCLUDED
|
|
#define BEAST_NET_IPADDRESSCONVERSION_H_INCLUDED
|
|
|
|
#include <xrpl/beast/net/IPEndpoint.h>
|
|
|
|
#include <boost/asio.hpp>
|
|
|
|
namespace beast {
|
|
namespace IP {
|
|
|
|
/** Convert to Endpoint.
|
|
The port is set to zero.
|
|
*/
|
|
Endpoint
|
|
from_asio(boost::asio::ip::address const& address);
|
|
|
|
/** Convert to Endpoint. */
|
|
Endpoint
|
|
from_asio(boost::asio::ip::tcp::endpoint const& endpoint);
|
|
|
|
/** Convert to asio::ip::address.
|
|
The port is ignored.
|
|
*/
|
|
boost::asio::ip::address
|
|
to_asio_address(Endpoint const& endpoint);
|
|
|
|
/** Convert to asio::ip::tcp::endpoint. */
|
|
boost::asio::ip::tcp::endpoint
|
|
to_asio_endpoint(Endpoint const& endpoint);
|
|
|
|
} // namespace IP
|
|
} // namespace beast
|
|
|
|
namespace beast {
|
|
|
|
// DEPRECATED
|
|
struct IPAddressConversion
|
|
{
|
|
explicit IPAddressConversion() = default;
|
|
|
|
static IP::Endpoint
|
|
from_asio(boost::asio::ip::address const& address)
|
|
{
|
|
return IP::from_asio(address);
|
|
}
|
|
static IP::Endpoint
|
|
from_asio(boost::asio::ip::tcp::endpoint const& endpoint)
|
|
{
|
|
return IP::from_asio(endpoint);
|
|
}
|
|
static boost::asio::ip::address
|
|
to_asio_address(IP::Endpoint const& address)
|
|
{
|
|
return IP::to_asio_address(address);
|
|
}
|
|
static boost::asio::ip::tcp::endpoint
|
|
to_asio_endpoint(IP::Endpoint const& address)
|
|
{
|
|
return IP::to_asio_endpoint(address);
|
|
}
|
|
};
|
|
|
|
} // namespace beast
|
|
|
|
#endif
|