gpt4 book ai didi

ios - 用于 ios 开发的 ping 和 arp

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:42:10 34 4
gpt4 key购买 nike

您好,我是 ios 开发人员,我正在尝试编写网络套接字程序。首先,我试图找到一种获取 arp 表和 icmp 操作(例如 ping)的方法。我在苹果应用商店找到了很多不错的网络扫描仪,但我真的不知道应该从哪里开始。

我唯一担心的是应用商店被拒绝。

  • 我可以在 iOS 设备上使用 system() 函数吗?
  • 我知道我不能使用原始套接字编程,如果没有原始套接字编程,我如何处理 icmp 和 arp 操作?

感谢您的关心!

最佳答案

https://github.com/mongizaidi/LAN-Scan

这个例子应该是很好的开始。 (有关 ping 的信息,请参阅 https://github.com/mongizaidi/LAN-Scan/blob/master/LAN%20Scan/SimplePing.m)

注意:
无法获取自己设备的MAC地址,但可以解析其他设备的MAC地址。
这是解析主机Mac地址的代码(苹果不会拒绝)

#include <sys/param.h>
#include <sys/file.h>
#include <sys/socket.h>
#include <sys/sysctl.h>

#include <net/if.h>
#include <net/if_dl.h>
#include "if_types.h"
#include "route.h"
#include "if_ether.h"
#include <netinet/in.h>


#include <arpa/inet.h>

#include <err.h>
#include <errno.h>
#include <netdb.h>

#include <paths.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

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




}

关于ios - 用于 ios 开发的 ping 和 arp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26119587/

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