mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
90 lines
3.2 KiB
C++
90 lines
3.2 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of rippled: https://github.com/ripple/rippled
|
|
Copyright (c) 2012, 2013 Ripple Labs Inc.
|
|
|
|
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.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_SERVER_SSLWSPEER_H_INCLUDED
|
|
#define RIPPLE_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
|