6

我需要从 iOS 应用程序中的 URL 获取 CDN 的 IP 地址。从长堆栈搜索中,我确定了一种使用以下方法执行此操作的方法:

struct hostent *host_entry = gethostbyname("stackoverflow.com");
char *buff;
buff = inet_ntoa(*((struct in_addr *)host_entry->h_addr_list[0]));
// buff is now equal to the IP of the stackoverflow.com server

但是,当使用此代码片段时,我的应用程序无法编译并显示此警告:“取消引用指向不完整类型的指针”

我对结构一无所知,也不知道如何解决这个问题。有什么建议么?

我也试过:

#include <ifaddrs.h>
#include <arpa/inet.h>

但结果是同样的警告。

4

3 回答 3

6

这是将 URL 主机名转换为 IP 地址的 Swift 3.1 版本。

import Foundation
private func urlToIP(_ url:URL) -> String? {
  guard let hostname = url.host else {
    return nil
  }

  guard let host = hostname.withCString({gethostbyname($0)}) else {
    return nil
  }

  guard host.pointee.h_length > 0 else {
    return nil
  }

  var addr = in_addr()
  memcpy(&addr.s_addr, host.pointee.h_addr_list[0], Int(host.pointee.h_length))

  guard let remoteIPAsC = inet_ntoa(addr) else {
    return nil
  }

  return String.init(cString: remoteIPAsC)
}
于 2017-04-18T21:39:52.327 回答
5

也许这个功能会起作用?

#import <netdb.h>
#include <arpa/inet.h>

- (NSString*)lookupHostIPAddressForURL:(NSURL*)url
{
    // Ask the unix subsytem to query the DNS
    struct hostent *remoteHostEnt = gethostbyname([[url host] UTF8String]);
    // Get address info from host entry
    struct in_addr *remoteInAddr = (struct in_addr *) remoteHostEnt->h_addr_list[0];
    // Convert numeric addr to ASCII string
    char *sRemoteInAddr = inet_ntoa(*remoteInAddr);
    // hostIP
    NSString* hostIP = [NSString stringWithUTF8String:sRemoteInAddr];
    return hostIP;
}
于 2013-07-18T15:04:10.527 回答
5

我使用以下内容编译该代码没有问题:

#import <netdb.h>
#include <arpa/inet.h>
于 2013-07-18T17:00:31.887 回答