boost::aiso 写的服务器 客户端如何通过域名访问
tcp::endpoint endpoint(boost::asio::ip::address_v4::from_string(ip),port);
socket_.async_connect(endpoint, boost::bind(&echo_session::handle_connect, this, boost::asio::placeholders::error));
boost::asio::ip::address_v4::from_string(ip)是个标准的ipv4的地址
如何通过域名类似于“name.gicp.net”访问
[解决办法]
先调用基本库函数gethostbyname()可以从域名得到IP地址。就可以了。
- 千里孤行