陶醉外套

文章
5
资源
0
加入时间
3年0月21天

hostname转ip功能

bool hostname2ip(const std::string hostname, std::string &ip){ struct hostent * hptr; struct in_addr * addr_list; hptr=gethostbyname(hostname.c_str()); if(hptr==NULL) { ...