我知道有增力:为这种 st子而做的就是as。 如果在使用http://而不是使用http://www. (我指的是,我有10个使用http://www.un.org和4的、使用TCP的,但确实存在同样的缺陷(接收http://www.ceive.aspss/recssss.),因此这种功能将真正帮助我)
因此,请见example of http serrver 。
#include <boost/network/protocol/http/server.hpp>
#include <string>
#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)
{
std::string ip = source(request);
response = server::response::stock_reply(
server::response::ok, std::string("Hello, ") + ip + "!");
}
};
int
main(int argc, char * argv[])
{
if (argc != 3)
{
std::cerr << "Usage: " << argv[0] << " address port" << std::endl;
return 1;
}
try
{
hello_world handler;
server server_(argv[1], argv[2], handler);
server_.run();
}
catch (std::exception &e)
{
std::cerr << e.what() << std::endl;
return 1;
}
return 0;
}
如何将其信息带回http://www.un.org?