rebases ssl source

This commit is contained in:
Nathan Nichols
2021-10-04 17:45:16 -07:00
committed by CJ Cobb
parent c8681cc0fa
commit 1059f99823
3 changed files with 8 additions and 8 deletions

View File

@@ -806,7 +806,7 @@ ETLSourceImpl<Derived>::getRippledForwardingStub() const
}
template <class Derived>
boost::json::object
std::optional<boost::json::object>
ETLSourceImpl<Derived>::forwardToRippled(boost::json::object const& request) const
{
BOOST_LOG_TRIVIAL(debug) << "Attempting to forward request to tx. "

View File

@@ -53,7 +53,7 @@ public:
virtual std::unique_ptr<org::xrpl::rpc::v1::XRPLedgerAPIService::Stub>
getRippledForwardingStub() const = 0;
virtual boost::json::object
virtual std::optional<boost::json::object>
forwardToRippled(boost::json::object const& request) const = 0;
virtual
@@ -320,7 +320,7 @@ public:
std::unique_ptr<org::xrpl::rpc::v1::XRPLedgerAPIService::Stub>
getRippledForwardingStub() const override;
boost::json::object
std::optional<boost::json::object>
forwardToRippled(boost::json::object const& request) const override;
};

View File

@@ -4,11 +4,11 @@
#include <boost/asio/dispatch.hpp>
#include <boost/beast/core.hpp>
#include <boost/beast/websocket.hpp>
#include <server/HttpSession.h>
#include <server/PlainWsSession.h>
#include <server/SslHttpSession.h>
#include <server/SslWsSession.h>
#include <server/SubscriptionManager.h>
#include <webserver/HttpSession.h>
#include <webserver/PlainWsSession.h>
#include <webserver/SslHttpSession.h>
#include <webserver/SslWsSession.h>
#include <webserver/SubscriptionManager.h>
#include <iostream>