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.
73 lines
2.1 KiB
C++
73 lines
2.1 KiB
C++
#ifndef XRPL_SERVER_SSLWSPEER_H_INCLUDED
|
|
#define XRPL_SERVER_SSLWSPEER_H_INCLUDED
|
|
|
|
#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 ripple {
|
|
|
|
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 ripple
|
|
|
|
#endif
|