11

我在我的 linux 系统上安装了 pcap 库,但是在包含它时出现错误

 /usr/include/pcap/bpf.h:88:1: error: unknown type name ‘u_int’
 /usr/include/pcap/bpf.h:108:2: error: unknown type name ‘u_int’
 /usr/include/pcap/bpf.h:1260:2: error: unknown type name ‘u_short’
 /usr/include/pcap/bpf.h:1261:2: error: unknown type name ‘u_char’
 /usr/include/pcap/bpf.h:1262:2: error: unknown type name ‘u_char’
 In file included from ../src/test.c:1:0:
 /usr/include/pcap/pcap.h:125:2: error: unknown type name ‘u_short’
 /usr/include/pcap/pcap.h:126:2: error: unknown type name ‘u_short’
 /usr/include/pcap/pcap.h:171:2: error: unknown type name ‘u_int’
 ...
 make: *** [src/test.o] Error 1

包括我

 #include <pcap/pcap.h>
 #include <sys/types.h>
 #include <pcap-bpf.h>

在程序中,我错过了什么?

4

2 回答 2

12

确保您没有定义任何:

  • __STRICT_ANSI__
  • _ISOC99_SOURCE
  • _POSIX_SOURCE
  • _POSIX_C_SOURCE
  • _XOPEN_SOURCE
  • _SVID_SOURCE

构建程序时;它们可能会阻止定义 BSD 数据类型,例如编译器抱怨的那些。

于 2013-03-13T19:22:30.113 回答
11

尝试添加

     -D_BSD_SOURCE

az 一个 CFLAG 到你的 Makefile。

于 2013-09-18T20:24:25.563 回答