0

我尝试在 Ubuntu 16.04 上使用 cpp-netlib-0.12.0 和 boost-1.64.0 在 cpp-netlib.org 上运行 hello world 示例。一段代码是(从第 1 行开始):

#include <boost/network/protocol/http/server.hpp>
#include <iostream>

namespace http = boost::network::http;

struct hello_world;
typedef http::server<hello_world> server;

struct hello_world
{
    void operator()(server::request const &request, server::response &response)
    {
        server::string_type ip = source(request);
        unsigned int port = request.source_port;
        std::ostringstream data;
        data << "Hello, " << ip << ':' << port << '!';
        response = server::response::stock_reply(server::response::ok, data.str());
    }
    void log(const server::string_type& message)
    {
        std::cerr << "ERROR: " << message << std::endl;
    }
};

当我使用以下行编译时:

g++ test1.cpp -o test1 -std=c++11 -lcppnetlib-uri -lcppnetlib-server-parsers -lcppnetlib-client-connections -lboost_system -lboost_thread -lpthread

我收到以下错误:

test1.cpp:11:61: error: ‘boost::network::http::server<hello_world>::response’ has not been declared
     void operator()(server::request const &request, server::response &response)
                                                             ^
test1.cpp: In member function ‘void hello_world::operator()(const request&, int&)’:
test1.cpp:17:28: error: ‘boost::network::http::server<hello_world>::response’ has not been declared
         response = server::response::stock_reply(server::response::ok, data.str());
                            ^
test1.cpp:17:58: error: ‘boost::network::http::server<hello_world>::response’ has not been declared
         response = server::response::stock_reply(server::response::ok, data.str());
                                                          ^

我从网站上的示例中直接提取了代码。我检查了包含路径,所有必要的库似乎都在那里。我似乎无法弄清楚问题所在。

4

1 回答 1

0

看起来 cpp-netlib 的文档都搞砸了(就像整个项目一样)。HTTP服务器API页面坚持Handler模板参数http::server应该有成员operator ()作为connection_ptr第二个参数(尽管它建议错误的包含):

#include <boost/network/protocol/http/server.hpp>
#include <boost/network/utils/thread_pool.hpp>

struct handler_type;
typedef boost::network::http::server<handler_type> http_server;

struct handler_type
{
    void
    operator ()
    (
        http_server::request const & request,
        http_server::connection_ptr  connection
    )
    {
        // do something here
    }
};
于 2017-06-17T06:46:19.867 回答