菜鸟教程小白 发表于 2022-12-13 01:15:57

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(&amp;serviceRef, 0, 0, &#34;apple.com&#34;, kDNSServiceType_CNAME,
                                  kDNSServiceClass_IN, queryCallback, NULL);
    if (error != kDNSServiceErr_NoError){
      NSLog(@&#34;DNS Service error&#34;);
    }

    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 &amp;&amp; rdlen &gt; 1) {
    NSMutableData *txtData = ;

    for (uint16_t i = 1; i &lt; rdlen; i += 256) {
      ;
    }

    NSString *theTXT = [ initWithBytes:txtData.bytes length:txtData.length encoding:NSASCIIStringEncoding];
    NSLog(@&#34;CNAME: %@&#34;, 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]
查看完整版本: ios - 如何在 iOS 中获取域的 CNAME