Files
rippled/include/xrpl/server/Server.h
Ayaz Salikhov 5f638f5553 chore: Set ColumnLimit to 120 in clang-format (#6288)
This change updates the ColumnLimit from 80 to 120, and applies clang-format to reformat the code.
2026-01-28 18:09:50 +00:00

24 lines
607 B
C++

#ifndef XRPL_SERVER_SERVER_H_INCLUDED
#define XRPL_SERVER_SERVER_H_INCLUDED
#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>
make_Server(Handler& handler, boost::asio::io_context& io_context, beast::Journal journal)
{
return std::make_unique<ServerImpl<Handler>>(handler, io_context, journal);
}
} // namespace xrpl
#endif