iphone设备中wifi的服务器IP地址

时间:2012-11-07 07:14:05

标签: iphone objective-c

我想在iphone设备中获取wifi的服务器IP地址。我不想在iphone设备中使用wifi设备ipaddress ...如果有任何API用于获取iphone中wifi的服务器IP地址..请参考并分享这些链接......

实施例。我的iPhone连接到一些XYZ wifi。是否可以获取提供WIFI访问的服务器的实时IP地址?

1 个答案:

答案 0 :(得分:-1)

Objective-C方法将NS连接的IP地址检索为NSString。

- (NSString *)getIPAddress 

{    NSString *address = @"error";    struct ifaddrs *interfaces = NULL;   struct ifaddrs *temp_addr = NULL;    int success = 0;

  // retrieve the current interfaces - returns 0 on success   

success= getifaddrs(&interfaces);    if (success == 0) 
         {
          // Loop through linked list of interfaces
     temp_addr = interfaces;
     while (temp_addr != NULL) 

{
       if( temp_addr->ifa_addr->sa_family == AF_INET) 

{
         // Check if interface is en0 which is the wifi connection on the iPhone
         if ([[NSString stringWithUTF8String:temp_addr->ifa_name] isEqualToString:@"en0"]) 

{
           // Get NSString from C String
           address = [NSString stringWithUTF8String:inet_ntoa(((struct sockaddr_in *)temp_addr->ifa_addr)->sin_addr)];
         }
       }

       temp_addr = temp_addr->ifa_next;
     }   

}

   // Free memory   freeifaddrs(interfaces);

   return address; 

}

如果这对您不起作用,您可能需要在类实现的顶部包含以下C标头

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