mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
70 lines
2.1 KiB
C++
70 lines
2.1 KiB
C++
#pragma once
|
|
|
|
#include <xrpl/server/WSSession.h>
|
|
#include <xrpl/server/detail/BaseHTTPPeer.h>
|
|
|
|
#include <boost/asio/ip/tcp.hpp>
|
|
#include <boost/asio/ssl/context.hpp>
|
|
#include <boost/asio/ssl/stream.hpp>
|
|
#include <boost/beast/core/tcp_stream.hpp>
|
|
#include <boost/beast/ssl/ssl_stream.hpp>
|
|
#include <boost/beast/websocket/ssl.hpp>
|
|
|
|
#include <memory>
|
|
|
|
namespace xrpl {
|
|
|
|
template <class Handler>
|
|
class SSLWSPeer : public BaseWSPeer<Handler, SSLWSPeer<Handler>>,
|
|
public std::enable_shared_from_this<SSLWSPeer<Handler>>
|
|
{
|
|
friend class BasePeer<Handler, SSLWSPeer>;
|
|
friend class BaseWSPeer<Handler, SSLWSPeer>;
|
|
|
|
using clock_type = std::chrono::system_clock;
|
|
using error_code = boost::system::error_code;
|
|
using endpoint_type = boost::asio::ip::tcp::endpoint;
|
|
using socket_type = boost::beast::tcp_stream;
|
|
using stream_type = boost::beast::ssl_stream<socket_type>;
|
|
using waitable_timer = boost::asio::basic_waitable_timer<clock_type>;
|
|
|
|
std::unique_ptr<stream_type> stream_ptr_;
|
|
boost::beast::websocket::stream<stream_type&> ws_;
|
|
|
|
public:
|
|
template <class Body, class Headers>
|
|
SSLWSPeer(
|
|
Port const& port,
|
|
Handler& handler,
|
|
endpoint_type remote_endpoint,
|
|
boost::beast::http::request<Body, Headers>&& request,
|
|
std::unique_ptr<stream_type>&& stream_ptr,
|
|
beast::Journal journal);
|
|
};
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
template <class Handler>
|
|
template <class Body, class Headers>
|
|
SSLWSPeer<Handler>::SSLWSPeer(
|
|
Port const& port,
|
|
Handler& handler,
|
|
endpoint_type remote_endpoint,
|
|
boost::beast::http::request<Body, Headers>&& request,
|
|
std::unique_ptr<stream_type>&& stream_ptr,
|
|
beast::Journal journal)
|
|
: BaseWSPeer<Handler, SSLWSPeer>(
|
|
port,
|
|
handler,
|
|
stream_ptr->get_executor(),
|
|
waitable_timer{stream_ptr->get_executor()},
|
|
remote_endpoint,
|
|
std::move(request),
|
|
journal)
|
|
, stream_ptr_(std::move(stream_ptr))
|
|
, ws_(*stream_ptr_)
|
|
{
|
|
}
|
|
|
|
} // namespace xrpl
|