boost.asio学习-----reslover 域名解析
Posted tyche116
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了boost.asio学习-----reslover 域名解析相关的知识,希望对你有一定的参考价值。
将域名解析为ip地址并输出:
1 #include "stdafx.h" 2 #include "boost/asio.hpp" 3 #include <boost/lexical_cast.hpp> 4 5 using namespace std; 6 using namespace boost::asio; 7 8 int _tmain(int argc, _TCHAR* argv[]) 9 { 10 boost::asio::io_service ios; 11 //创建resolver对象 12 ip::tcp::resolver slv(ios); 13 //创建query对象 14 ip::tcp::resolver::query qry("www.google.com", boost::lexical_cast<string>(0)); 15 //使用resolve迭代端点 16 ip::tcp::resolver::iterator it = slv.resolve(qry); 17 ip::tcp::resolver::iterator end; 18 vector<string> ip; 19 for (; it != end; it++) 20 { 21 ip.push_back((*it).endpoint().address().to_string()); 22 } 23 24 for (int i = 0; i < ip.size(); i++) 25 { 26 cout << ip[i] << endl; 27 } 28 getchar(); 29 return 0; 30 }
以上是关于boost.asio学习-----reslover 域名解析的主要内容,如果未能解决你的问题,请参考以下文章