mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +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.
64 lines
1.7 KiB
C++
64 lines
1.7 KiB
C++
#ifndef XRPL_SERVER_PLAINWSPEER_H_INCLUDED
|
|
#define XRPL_SERVER_PLAINWSPEER_H_INCLUDED
|
|
|
|
#include <xrpl/server/detail/BaseWSPeer.h>
|
|
|
|
#include <boost/beast/core/tcp_stream.hpp>
|
|
|
|
#include <memory>
|
|
|
|
namespace ripple {
|
|
|
|
template <class Handler>
|
|
class PlainWSPeer : public BaseWSPeer<Handler, PlainWSPeer<Handler>>,
|
|
public std::enable_shared_from_this<PlainWSPeer<Handler>>
|
|
{
|
|
friend class BasePeer<Handler, PlainWSPeer>;
|
|
friend class BaseWSPeer<Handler, PlainWSPeer>;
|
|
|
|
using clock_type = std::chrono::system_clock;
|
|
using error_code = boost::system::error_code;
|
|
using endpoint_type = boost::asio::ip::tcp::endpoint;
|
|
using waitable_timer = boost::asio::basic_waitable_timer<clock_type>;
|
|
using socket_type = boost::beast::tcp_stream;
|
|
|
|
boost::beast::websocket::stream<socket_type> ws_;
|
|
|
|
public:
|
|
template <class Body, class Headers>
|
|
PlainWSPeer(
|
|
Port const& port,
|
|
Handler& handler,
|
|
endpoint_type remote_address,
|
|
boost::beast::http::request<Body, Headers>&& request,
|
|
socket_type&& socket,
|
|
beast::Journal journal);
|
|
};
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
template <class Handler>
|
|
template <class Body, class Headers>
|
|
PlainWSPeer<Handler>::PlainWSPeer(
|
|
Port const& port,
|
|
Handler& handler,
|
|
endpoint_type remote_address,
|
|
boost::beast::http::request<Body, Headers>&& request,
|
|
socket_type&& socket,
|
|
beast::Journal journal)
|
|
: BaseWSPeer<Handler, PlainWSPeer>(
|
|
port,
|
|
handler,
|
|
socket.get_executor(),
|
|
waitable_timer{socket.get_executor()},
|
|
remote_address,
|
|
std::move(request),
|
|
journal)
|
|
, ws_(std::move(socket))
|
|
{
|
|
}
|
|
|
|
} // namespace ripple
|
|
|
|
#endif
|