菜鸟教程小白 发表于 2022-12-12 16:18:14

ios - 列出本地网络中的设备名称


                                            <p><p>我能够获取连接的设备 IP 和它们的 MAC 地址,并且还想获取设备的名称和服务(开放端口)。</p>

<p>有人可以帮我解决这个问题吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这里是可以提供帮助的示例项目<a href="https://github.com/mongizaidi/LAN-Scan" rel="noreferrer noopener nofollow">An iOS Local Area Network / wifi Scanner</a> </p>

<p>您也可以尝试使用<a href="https://developer.apple.com/bonjour/" rel="noreferrer noopener nofollow">Bonjour</a> </p>

<p>这里 - <a href="https://stackoverflow.com/a/25993182/2012219" rel="noreferrer noopener nofollow">even more</a>关于局域网中设备的名称</p>

<hr/>

<p>我发现了几个变种:​​</p>

<p>1.</p>

<pre><code>struct hostent *he;
struct in_addr ipv4addr;
inet_pton(AF_INET, , &amp;ipv4addr);
he = gethostbyaddr(&amp;ipv4addr, sizeof ipv4addr, AF_INET);
if (he) {
    printf(&#34;Host name: %s\n&#34;, he-&gt;h_name);
}
</code></pre>

<p>where - 比如 127.0.0.1 (ip)</p>

<p>2.</p>

<pre><code>- (NSArray *)hostnamesForAddress:(NSString *)address {
    // Get the host reference for the given address.
    struct addrinfo      hints;
    struct addrinfo      *result = NULL;
    memset(&amp;hints, 0, sizeof(hints));
    hints.ai_flags    = AI_NUMERICHOST;
    hints.ai_family   = PF_UNSPEC; /* Allow IPv4 or IPv6 */
    hints.ai_socktype = SOCK_STREAM;
    hints.ai_protocol = 0;
    hints.ai_canonname = NULL;
    hints.ai_addr = NULL;
    hints.ai_next = NULL;

    int errorStatus = getaddrinfo(, NULL, &amp;hints, &amp;result);
    if (errorStatus != 0) return @[];

    CFDataRef addressRef = CFDataCreate(NULL, (UInt8 *)result-&gt;ai_addr, result-&gt;ai_addrlen);
    if (addressRef == nil) return nil;

    freeaddrinfo(result);
    CFHostRef hostRef = CFHostCreateWithAddress(kCFAllocatorDefault, addressRef);
    if (hostRef == nil) return nil;
    CFRelease(addressRef);
    BOOL isSuccess = CFHostStartInfoResolution(hostRef, kCFHostNames, NULL);
    if (!isSuccess) return nil;

    // Get the hostnames for the host reference.
    CFArrayRef hostnamesRef = CFHostGetNames(hostRef, NULL);
    NSMutableArray *hostnames = ;
    for (int currentIndex = 0; currentIndex &lt; [(__bridge NSArray *)hostnamesRef count]; currentIndex++) {
      ];
    }

    return hostnames;
}

- (NSString *)getErrorDescription:(NSInteger)errorCode
{
    NSString *errorDescription = @&#34;&#34;;;
    switch (errorCode) {
      case EAI_ADDRFAMILY: {
            errorDescription = @&#34; address family for hostname not supported&#34;;
            break;
      }
      case EAI_AGAIN: {
            errorDescription = @&#34; temporary failure in name resolution&#34;;
            break;
      }
      case EAI_BADFLAGS: {
            errorDescription = @&#34; invalid value for ai_flags&#34;;
            break;
      }
      case EAI_FAIL: {
            errorDescription = @&#34; non-recoverable failure in name resolution&#34;;
            break;
      }
      case EAI_FAMILY: {
            errorDescription = @&#34; ai_family not supported&#34;;
            break;
      }
      case EAI_MEMORY: {
            errorDescription = @&#34; memory allocation failure&#34;;
            break;
      }
      case EAI_NODATA: {
            errorDescription = @&#34; no address associated with hostname&#34;;
            break;
      }
      case EAI_NONAME: {
            errorDescription = @&#34; hostname nor servname provided, or not known&#34;;
            break;
      }
      case EAI_SERVICE: {
            errorDescription = @&#34; servname not supported for ai_socktype&#34;;
            break;
      }
      case EAI_SOCKTYPE: {
            errorDescription = @&#34; ai_socktype not supported&#34;;
            break;
      }
      case EAI_SYSTEM: {
            errorDescription = @&#34; system error returned in errno&#34;;
            break;
      }
      case EAI_BADHINTS: {
            errorDescription = @&#34; invalid value for hints&#34;;
            break;
      }
      case EAI_PROTOCOL: {
            errorDescription = @&#34; resolved protocol is unknown&#34;;
            break;
      }
      case EAI_OVERFLOW: {
            errorDescription = @&#34; argument buffer overflow&#34;;
            break;
      }
    }
    return errorDescription;
}
</code></pre>

<ol 开始=“3”>
3.
</ol>

<p>您可以从 <code>getifaddrs(&interfaces)</code> 获得其他信息,其中 <code>struct ifaddrs* interfaces</code> 喜欢</p>

<pre><code>    unsigned char *ptr;
    ptr = (unsigned char *)LLADDR((struct sockaddr_dl *)(temp_addr)-&gt;ifa_addr);

    NSString *ip = ;
    NSArray *hostsNames = ;
    NSMutableDictionary *info = [NSMutableDictionary dictionaryWithDictionary:
                                     @{
                                       @&#34;name&#34;: @(temp_addr-&gt;ifa_name),
                                       @&#34;flags&#34;: @(temp_addr-&gt;ifa_flags),
                                       @&#34;ip&#34; : ip,
                                       @&#34;family&#34;: @(temp_addr-&gt;ifa_addr-&gt;sa_family),
                                       @&#34;mac&#34; :&#34;, *ptr, *(ptr+1), *(ptr+2), *(ptr+3), *(ptr+4), *(ptr+5)],
                                       @&#34;hostName&#34; : hostsNames.count ? hostsNames : @&#34;&#34;
                                       }
                                     ];
</code></pre>

<p>结果你会得到类似的东西:</p>

<pre><code>{
    family = 2;
    flags = 32841;
    hostName =   (
      localhost
    );
    ip = &#34;127.0.0.1&#34;;
    mac = &#34;MAC&#34;;
    name = lo0;
}
{
    family = 18;
    flags = 34915;
    hostName = &#34;&#34;; //here empty due to one of the following problem or due to CFHostStartInfoResolution return NO - o this point required a little bit more works to be done
    ip = &#34;6.3.6.0&#34;;
    mac = &#34;MAC&#34;;
    name = en1;
}
</code></pre>

<p>还有 <a href="http://blog.toshsoft.de/index.php?/archives/5-3-Ways-to-Resolve-a-Hostname-in-iOS.html" rel="noreferrer noopener nofollow">this post very interesting</a>并且可能有用(我稍后会调查)</p>

<p>关于 <code>ifa_name</code>(接口(interface))的一些有用信息</p>

<pre><code>    //            pdp_ip -interfaces are those that are used for 3G and cellular data
    //            lo = localhost
    //            en = ether
    //            eth - ethernet
    //            wlan, ww, wl - Wifi - Wireless LAN
    //            awdl - ???
    //            utun - ???
    //            ap - is used to represent currently active data connection, Wi-Fi, cellular data or bluetooth or for access point
    //            bridge - Active hotSpot connection
    //            sl -- serial line IP (slip)
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 列出本地网络中的设备名称,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32717953/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32717953/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 列出本地网络中的设备名称