如何使用Windows API将主机名(例如“myhost”)转换为IPAddr
类型。 IPAddr
是一张无符号长号。
答案 0 :(得分:4)
尝试此操作(已修改):
hostent * record = gethostbyname(argv[1]);
if(record == NULL)
{
printf("%s is unavailable\n", argv[1]);
exit(1);
}
in_addr * address = (in_addr * )record->h_addr;
string ip_address = inet_ntoa(* address);
IPAddr dst_ip = ::inet_addr( ip_address.c_str() );