#include "sdk.h" #include #include #include #include #include #include #include #include #include #include "Listener.h" namespace beast = boost::beast; namespace http = beast::http; namespace net = boost::asio; using tcp = boost::asio::ip::tcp; using namespace uad; int main(int argc, char* argv[]) { if (argc != 5) { std::cerr << "Usage: http-server-async
\n" << "Example:\n" << " http-server-async 0.0.0.0 8080 . 1\n"; return EXIT_FAILURE; } auto const address = net::ip::make_address(argv[1]); auto const port = static_cast(std::atoi(argv[2])); auto const doc_root = std::make_shared(argv[3]); auto const threads = std::max(1, std::atoi(argv[4])); net::io_context ioc {threads}; std::make_shared( ioc, tcp::endpoint {address, port}, doc_root)->Run(); std::vector v; v.reserve(threads - 1); for (auto i = threads - 1; i > 0; --i) v.emplace_back( [&ioc] { ioc.run(); }); ioc.run(); return EXIT_SUCCESS; }