gpt4 book ai didi

Objective-C - 以编程方式确定 iPod touch 的 IP 地址

转载 作者:行者123 更新时间:2023-12-04 02:49:49 27 4
gpt4 key购买 nike

我正在用 Objective-C 为几个 iPod 设备编程,我想知道一些事情。我正在开发一个利用服务器-客户端模型的应用程序,并且我正在使用带有 C 套接字的 UDP 协议(protocol)。是否有一个类可以让我确定 iPod 设备的 IP 地址?在谷歌搜索其他论坛后,我没有找到任何东西。显然这个命令是行不通的,但是像 ipAddress = self.ip 这样的命令是我想到的。我正在设置多播 C 套接字,我正在尝试做一个类似于 ping 命令的解决方法,这显然在 Objective-C 中也不存在,或者据我所知(这是有限的,因为我只是在编程至少在今年夏天开始以来在Objective-C中)。有什么建议或提示吗?

最佳答案

这段代码将通过循环访问接口(interface)来检索它。

- (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;
}

关于Objective-C - 以编程方式确定 iPod touch 的 IP 地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1111413/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com