7

它是从手机中检索 IP 和 Mac 地址的一系列功能的一部分。

strcpy(temp, (char *)ether_ntoa((const struct ether_addr *)LLADDR(sdl)));

编辑:不需要等效功能,只是缺少一些标题。

编辑:向 LLADDR(sdl) 添加演员表

4

2 回答 2

15

当我阅读它时,错误消息并没有声称该函数丢失,只是您没有包含它的声明。(我不知道它存在,只是消息有不同的抱怨。)

如果有帮助,man ether_ntoa请告诉我:

#include <sys/types.h>
#include <sys/socket.h>
#include <net/ethernet.h>
于 2012-06-28T13:09:17.720 回答
0

我包括以下头文件和成功编译的源代码:

#import <arpa/inet.h>
于 2014-12-24T14:52:33.393 回答