ios - 如何在 iOS 中获取域的 CNAME
<p><p>我想解析一个域并获取其 CNAME 和 ip 信息,如下所示:</p>
<p>example.com -> cname.com -> ip 地址</p>
<p>我搜索了很多并且知道如何获取 IP 地址,例如由 CFHost 提供。但是我仍然不知道如何获取其他信息,例如它的 CNAME。</p>
<p>我应该使用 CFHost 还是其他方式执行此操作? </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您可以根据自己的目的使用以下代码</p>
<pre><code> + (void) getCNAME {
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
DNSServiceRef serviceRef;
DNSServiceErrorType error;
error = DNSServiceQueryRecord(&serviceRef, 0, 0, "apple.com", kDNSServiceType_CNAME,
kDNSServiceClass_IN, queryCallback, NULL);
if (error != kDNSServiceErr_NoError){
NSLog(@"DNS Service error");
}
DNSServiceProcessResult(serviceRef);
DNSServiceRefDeallocate(serviceRef);
});}
static void queryCallback(DNSServiceRef sdRef,
DNSServiceFlags flags,
uint32_t interfaceIndex,
DNSServiceErrorType errorCode,
const char *fullname,
uint16_t rrtype,
uint16_t rrclass,
uint16_t rdlen,
const void *rdata,
uint32_t ttl,
void *context) {
if (errorCode == kDNSServiceErr_NoError && rdlen > 1) {
NSMutableData *txtData = ;
for (uint16_t i = 1; i < rdlen; i += 256) {
;
}
NSString *theTXT = [ initWithBytes:txtData.bytes length:txtData.length encoding:NSASCIIStringEncoding];
NSLog(@"CNAME: %@", theTXT);
}}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何在 iOS 中获取域的 CNAME,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/43592659/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/43592659/
</a>
</p>
页:
[1]