gpt4 book ai didi

objective-c - 在 iPhone/iPad 上获取 ARP 表

转载 作者:可可西里 更新时间:2023-11-01 03:52:44 32 4
gpt4 key购买 nike

我正在尝试在我的 iPad 上获取 ARP 条目,例如 here .

当编译代码以在我的 iPad(而不是模拟器)上运行时,我收到缺少 header 的错误消息。您可以按照本 post 中所述,通过将头文件复制到本地项目中来解决这些问题。 .

问题出在线路上

sdl = (struct sockaddr_dl *)(sin + 1);

在这段代码中:

-(NSString*) ip2mac: (char*) ip 
{

int expire_time, flags, export_only, doing_proxy, found_entry;

NSString *mAddr = nil;
u_long addr = inet_addr(ip);
int mib[6];
size_t needed;
char *host, *lim, *buf, *next;
struct rt_msghdr *rtm;
struct sockaddr_inarp *sin;
struct sockaddr_dl *sdl;
extern int h_errno;
struct hostent *hp;

mib[0] = CTL_NET;
mib[1] = PF_ROUTE;
mib[2] = 0;
mib[3] = AF_INET;
mib[4] = NET_RT_FLAGS;
mib[5] = RTF_LLINFO;
if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0)
err(1, "route-sysctl-estimate");
if ((buf = malloc(needed)) == NULL)
err(1, "malloc");
if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0)
err(1, "actual retrieval of routing table");


lim = buf + needed;
for (next = buf; next < lim; next += rtm->rtm_msglen) {
rtm = (struct rt_msghdr *)next;
sin = (struct sockaddr_inarp *)(rtm + 1);
sdl = (struct sockaddr_dl *)(sin + 1);
if (addr) {
if (addr != sin->sin_addr.s_addr)
continue;
found_entry = 1;
}
if (nflag == 0)
hp = gethostbyaddr((caddr_t)&(sin->sin_addr),
sizeof sin->sin_addr, AF_INET);
else
hp = 0;
if (hp)
host = hp->h_name;
else {
host = "?";
if (h_errno == TRY_AGAIN)
nflag = 1;
}



if (sdl->sdl_alen) {

u_char *cp = LLADDR(sdl);

mAddr = [NSString stringWithFormat:@"%x:%x:%x:%x:%x:%x", cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]];


// ether_print((u_char *)LLADDR(sdl));
}
else

mAddr = nil;



}


if (found_entry == 0) {
return nil;
} else {
return mAddr;
}




}

它给出了以下错误信息:

对不完整类型 'struct sockaddr_inarp*' 的指针进行运算

当您为 iPad 模拟器编译代码时,一切运行良好。

有没有人知道如何解决这个问题?问了一个类似的问题(但没有解决)here .

最佳答案

导入 后,您应该编辑它并更改行

#include <net/if_arp.h>

#include "if_arp.h"

然后在您的项目中也导入 。这应该可以修复该错误。

无论如何,编译您发布的代码需要导入的 header 是:

#include "if_ether.h"
#include "route.h"
#include "if_arp.h"
#include "if_dl.h"

希望这有帮助 =)

编辑:

您需要“将文件添加到项目”,而不是简单地使用#import 或#include 导入它。您可以从以下链接找到上述文件: Files under "netinet" Files under "net"

关于objective-c - 在 iPhone/iPad 上获取 ARP 表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10395041/

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