mirror of
https://github.com/XRPLF/rippled.git
synced 2026-01-26 09:35:23 +00:00
This change renames all occurrences of `namespace ripple` and `ripple::` to `namespace xrpl` and `xrpl::`, respectively, as well as the names of test suites. It also provides a script to allow developers to replicate the changes in their local branch or fork to avoid conflicts.
27 lines
620 B
C++
27 lines
620 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
|