我有以下代码可以检索URL的所有DNS A记录。当我从UI调用此代码时,它工作正常并返回所有A记录,但是,当从其他异步线程调用此代码时,它始终只返回一个IP(一个A记录),任何想法为什么?
这是代码:
Boolean result;
CFHostRef hostRef = NULL;
CFArrayRef addresses = NULL;
NSString *hostname = [NSString stringWithCString:server];
hostRef = CFHostCreateWithName(kCFAllocatorDefault, (CFStringRef)hostname);
if (hostRef) {
result = CFHostStartInfoResolution(hostRef, kCFHostAddresses, NULL); // pass an error instead of NULL here to find out why it failed
if (result == TRUE) {
addresses = CFHostGetAddressing(hostRef, &result);
}
}
if (result == TRUE)
{
NSLog(@"ResolveDNS - Resolved");
for (CFIndex count = 0; count < CFArrayGetCount(addresses); count++)
{
char addr[256];
struct sockaddr_in *sa = (struct sockaddr_in *)
CFDataGetBytePtr((CFDataRef)CFArrayGetValueAtIndex(addresses, count));
// inet_ntop will correctly display both IPv4 and IPv6 addresses
if (inet_ntop(sa->sin_family, &sa->sin_addr, addr, sizeof(addr)))
printf("%s:%d \n", addr, ntohs(sa->sin_port));
[ipTmpArray addObject:[NSString stringWithCString:addr]];
}
答案 0 :(得分:0)
同样的情况发生在我的所有iOS设备上(全部在4.2或4.3上),但在我的模拟器上却没有。 如果我再次启动相同的方法,我有时会得到更多的IP,有时甚至是所有的。
我怀疑这是由于iOS,当他们记录以前的分辨率时的某种内存优化。