5 // Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)
7 // Distributed under the Boost Software License, Version 1.0. (See accompanying
8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
13 #include <boost/asio.hpp>
16 int main(int argc, char* argv[])
20 // Check command line arguments.
23 std::cerr << "Usage: http_server <address> <port> <doc_root>\n";
24 std::cerr << " For IPv4, try:\n";
25 std::cerr << " receiver 0.0.0.0 80 .\n";
26 std::cerr << " For IPv6, try:\n";
27 std::cerr << " receiver 0::0 80 .\n";
31 // Initialise the server.
32 http::server::server s(argv[1], argv[2], argv[3]);
34 // Run the server until stopped.
37 catch (std::exception& e)
39 std::cerr << "exception: " << e.what() << "\n";