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) { ... 编程语言 2023-09-01 40 点赞 0 评论 60 浏览