mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 02:55:50 +00:00
215 lines
6.5 KiB
C++
215 lines
6.5 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of Beast: https://github.com/vinniefalco/Beast
|
|
Copyright 2013, Vinnie Falco <vinnie.falco@gmail.com>
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
Socket::~Socket ()
|
|
{
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
//
|
|
// basic_io_object
|
|
//
|
|
|
|
boost::asio::io_service& Socket::get_io_service ()
|
|
{
|
|
pure_virtual ();
|
|
return *static_cast <boost::asio::io_service*>(nullptr);
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
//
|
|
// basic_socket
|
|
//
|
|
|
|
void* Socket::lowest_layer (char const*) const
|
|
{
|
|
pure_virtual ();
|
|
return nullptr;
|
|
}
|
|
|
|
void* Socket::native_handle (char const*) const
|
|
{
|
|
pure_virtual ();
|
|
return nullptr;
|
|
}
|
|
|
|
boost::system::error_code Socket::cancel (boost::system::error_code& ec)
|
|
{
|
|
return pure_virtual (ec);
|
|
}
|
|
|
|
boost::system::error_code Socket::shutdown (shutdown_type, boost::system::error_code& ec)
|
|
{
|
|
return pure_virtual (ec);
|
|
}
|
|
|
|
boost::system::error_code Socket::close (boost::system::error_code& ec)
|
|
{
|
|
return pure_virtual (ec);
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
//
|
|
// basic_socket_acceptor
|
|
//
|
|
|
|
boost::system::error_code Socket::accept (Socket&, boost::system::error_code& ec)
|
|
{
|
|
return pure_virtual (ec);
|
|
}
|
|
|
|
BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (boost::system::error_code))
|
|
Socket::async_accept (Socket&, HandlerCall const& handler)
|
|
{
|
|
#if BEAST_ASIO_HAS_FUTURE_RETURNS
|
|
boost::asio::detail::async_result_init<
|
|
HandlerCall, void (boost::system::error_code)> init( handler);
|
|
get_io_service ().post (HandlerCall (HandlerCall::Post (),
|
|
handler, pure_virtual_error ()));
|
|
return init.result.get();
|
|
#else
|
|
get_io_service ().post (HandlerCall (HandlerCall::Post(),
|
|
handler, pure_virtual_error ()));
|
|
#endif
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
//
|
|
// basic_stream_socket
|
|
//
|
|
|
|
std::size_t Socket::read_some (MutableBuffers const&, boost::system::error_code& ec)
|
|
{
|
|
pure_virtual (ec);
|
|
return 0;
|
|
}
|
|
|
|
std::size_t Socket::write_some (ConstBuffers const&, boost::system::error_code& ec)
|
|
{
|
|
pure_virtual (ec);
|
|
return 0;
|
|
}
|
|
|
|
BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (boost::system::error_code, std::size_t))
|
|
Socket::async_read_some (MutableBuffers const&, HandlerCall const& handler)
|
|
{
|
|
#if BEAST_ASIO_HAS_FUTURE_RETURNS
|
|
boost::asio::detail::async_result_init<
|
|
HandlerCall, void (boost::system::error_code, std::size_t)> init(handler);
|
|
get_io_service ().post (HandlerCall (HandlerCall::Post (),
|
|
handler, pure_virtual_error (), 0));
|
|
return init.result.get();
|
|
#else
|
|
get_io_service ().post (HandlerCall (HandlerCall::Post (),
|
|
handler , pure_virtual_error (), 0));
|
|
#endif
|
|
}
|
|
|
|
BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (boost::system::error_code, std::size_t))
|
|
Socket::async_write_some (ConstBuffers const&, HandlerCall const& handler)
|
|
{
|
|
#if BEAST_ASIO_HAS_FUTURE_RETURNS
|
|
boost::asio::detail::async_result_init<
|
|
HandlerCall, void (boost::system::error_code, std::size_t)> init(handler);
|
|
get_io_service ().post (HandlerCall (HandlerCall::Post (),
|
|
handler, pure_virtual_error (), 0));
|
|
return init.result.get();
|
|
#else
|
|
get_io_service ().post (HandlerCall (HandlerCall::Post (),
|
|
handler, pure_virtual_error (), 0));
|
|
#endif
|
|
}
|
|
|
|
//--------------------------------------------------------------------------
|
|
//
|
|
// ssl::stream
|
|
//
|
|
|
|
bool Socket::needs_handshake ()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
boost::system::error_code Socket::handshake (handshake_type, boost::system::error_code& ec)
|
|
{
|
|
return pure_virtual (ec);
|
|
}
|
|
|
|
BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (boost::system::error_code))
|
|
Socket::async_handshake (handshake_type, BOOST_ASIO_MOVE_ARG(HandlerCall) handler)
|
|
{
|
|
#if BEAST_ASIO_HAS_FUTURE_RETURNS
|
|
boost::asio::detail::async_result_init<
|
|
HandlerCall, void (boost::system::error_code)> init( handler);
|
|
get_io_service ().post (HandlerCall (HandlerCall::Post (),
|
|
handler, pure_virtual_error ()));
|
|
return init.result.get();
|
|
#else
|
|
get_io_service ().post (HandlerCall (HandlerCall::Post(),
|
|
handler, pure_virtual_error ()));
|
|
#endif
|
|
}
|
|
|
|
#if BEAST_ASIO_HAS_BUFFEREDHANDSHAKE
|
|
|
|
boost::system::error_code Socket::handshake (handshake_type,
|
|
ConstBuffers const&, boost::system::error_code& ec)
|
|
{
|
|
return pure_virtual (ec);
|
|
}
|
|
|
|
BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (boost::system::error_code, std::size_t))
|
|
Socket::async_handshake (handshake_type, ConstBuffers const&, HandlerCall const& handler)
|
|
{
|
|
#if BEAST_ASIO_HAS_FUTURE_RETURNS
|
|
boost::asio::detail::async_result_init<
|
|
HandlerCall, void (boost::system::error_code, std::size_t)> init(handler);
|
|
get_io_service ().post (HandlerCall (HandlerCall::Post (),
|
|
handler, pure_virtual_error (), 0));
|
|
return init.result.get();
|
|
#else
|
|
get_io_service ().post (HandlerCall (HandlerCall::Post (),
|
|
handler , pure_virtual_error (), 0));
|
|
#endif
|
|
}
|
|
|
|
#endif
|
|
|
|
boost::system::error_code Socket::shutdown (boost::system::error_code& ec)
|
|
{
|
|
return pure_virtual (ec);
|
|
}
|
|
|
|
BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (boost::system::error_code))
|
|
Socket::async_shutdown (HandlerCall const& handler)
|
|
{
|
|
#if BEAST_ASIO_HAS_FUTURE_RETURNS
|
|
boost::asio::detail::async_result_init<
|
|
HandlerCall, void (boost::system::error_code, std::size_t)> init (handler);
|
|
get_io_service ().post (HandlerCall (HandlerCall::Post (),
|
|
handler, pure_virtual_error ()));
|
|
return init.result.get();
|
|
#else
|
|
get_io_service ().post (HandlerCall (HandlerCall::Post (),
|
|
handler , pure_virtual_error ()));
|
|
#endif
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|