///根据域名获取ip地址 - 可以用于控制APP的开关某一个入口,比接口方式速度快的多
+ (NSString*)getIPWithHostName:(const NSString*)hostName {
const char *hostN= [hostName UTF8String];
struct hostent* phot;
@try {
phot = gethostbyname(hostN);
} @catch (NSException *exception) {
return nil;
}
struct in_addr ip_addr;
if (phot == NULL) {
NSLog("获取失败");
return nil;
}
memcpy(&ip_addr, phot->h_addr_list[0], 4);
char ip[20] = {0}; inet_ntop(AF_INET, &ip_addr, ip, sizeof(ip));
NSString* strIPAddress = [NSString stringWithUTF8String:ip];
NSLog("ip=====%@",strIPAddress);
return strIPAddress;
}