mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-02 16:26:48 +00:00
21 lines
533 B
C++
21 lines
533 B
C++
#pragma once
|
|
|
|
#include <xrpl/beast/utility/Journal.h>
|
|
#include <xrpl/beast/utility/PropertyStream.h>
|
|
#include <xrpl/server/Port.h>
|
|
#include <xrpl/server/detail/ServerImpl.h>
|
|
|
|
#include <boost/asio/io_context.hpp>
|
|
|
|
namespace xrpl {
|
|
|
|
/** Create the HTTP server using the specified handler. */
|
|
template <class Handler>
|
|
std::unique_ptr<Server>
|
|
makeServer(Handler& handler, boost::asio::io_context& ioContext, beast::Journal journal)
|
|
{
|
|
return std::make_unique<ServerImpl<Handler>>(handler, ioContext, journal);
|
|
}
|
|
|
|
} // namespace xrpl
|