2010-02-18 163 views
2

我正在试验Windows的WinPcap 4.1.1库,但我无法设法编译甚至是库提供的示例源文件。Winpcap MinGW编译错误

我得到这些错误:

'PCAP_OPENFLAG_PROMISCUOUS' 未申报(在一次使用此功能)
'PCAP_SRC_IF_STRING' 未声明(在一次使用此功能)

而且一堆警告:

隐式函数声明'localtime_s'
i功能mplicit声明“pcap_findalldevs_ex”
的功能“pcap_open”
的功能隐式声明隐式声明“scanf_s”

我用Google搜索了一下,发现我应该添加一行#define HAVE_REMOTE(我没有线索它做什么),但它在更多的错误会导致这样的:

未定义的引用“pcap_open”
未定义的引用“pcap_findalldevs_ex”
取消定义d引用'localtime_s'

"pcap.h"似乎被正确包含(eclipse不报告任何包括错误)。 我已将* .lib文件复制到MinGW/lib direcotry中,并在Path and Symbols->Library Paths(eclipse项目属性)中设置此路径

我不知道接下来要尝试什么。任何想法都欢迎。 在此先感谢

下面的代码:

#include "pcap.h" 

/* prototype of the packet handler */ 
void packet_handler(u_char *param, const struct pcap_pkthdr *header, 
const u_char *pkt_data); 

int main() 
{ 
pcap_if_t *alldevs; 
pcap_if_t *d; 
int inum; 
int i=0; 
pcap_t *adhandle; 
char errbuf[PCAP_ERRBUF_SIZE]; 

     /* Retrieve the device list on the local machine */ 
     if (pcap_findalldevs_ex(PCAP_SRC_IF_STRING, NULL, &alldevs, errbuf) == -1) 
     { 
       fprintf(stderr,"Error in pcap_findalldevs: %s\n", errbuf); 
       exit(1); 
     } 

     /* Print the list */ 
     for(d=alldevs; d; d=d->next) 
     { 
       printf("%d. %s", ++i, d->name); 
       if (d->description) 
         printf(" (%s)\n", d->description); 
       else 
         printf(" (No description available)\n"); 
     } 

     if(i==0) 
     { 
       printf("\nNo interfaces found! Make sure WinPcap is installed.\n"); 
       return -1; 
     } 

     printf("Enter the interface number (1-%d):",i); 
     scanf_s("%d", &inum); 

     if(inum < 1 || inum > i) 
     { 
       printf("\nInterface number out of range.\n"); 
       /* Free the device list */ 
       pcap_freealldevs(alldevs); 
       return -1; 
     } 

     /* Jump to the selected adapter */ 
     for(d=alldevs, i=0; i< inum-1 ;d=d->next, i++); 

     /* Open the device */ 
     if ((adhandle= pcap_open(d->name,      // name of the device 
                 65536,      // portion of the packet to capture 
                           // 65536 guarantees that the whole packet will be captured 
on all the link layers 
                 PCAP_OPENFLAG_PROMISCUOUS, // promiscuous mode 
                 1000,       // read timeout 
                 NULL,       // authentication on the remote machine 
                 errbuf      // error buffer 
                 )) == NULL) 
     { 
       fprintf(stderr,"\nUnable to open the adapter. %s is not supported by 
WinPcap\n", d->name); 
       /* Free the device list */ 
       pcap_freealldevs(alldevs); 
       return -1; 
     } 

     printf("\nlistening on %s...\n", d->description); 

     /* At this point, we don't need any more the device list. Free it */ 
     pcap_freealldevs(alldevs); 

     /* start the capture */ 
     pcap_loop(adhandle, 0, packet_handler, NULL); 

     return 0; 
} 


/* Callback function invoked by libpcap for every incoming packet */ 
void packet_handler(u_char *param, const struct pcap_pkthdr *header, 
const u_char *pkt_data) 
{ 
     struct tm ltime; 
     char timestr[16]; 
     time_t local_tv_sec; 

     /* 
     * unused variables 
     */ 
     (VOID)(param); 
     (VOID)(pkt_data); 

     /* convert the timestamp to readable format */ 
     local_tv_sec = header->ts.tv_sec; 
     localtime_s(&ltime, &local_tv_sec); 
     strftime(timestr, sizeof timestr, "%H:%M:%S", &ltime); 

     printf("%s,%.6d len:%d\n", timestr, header->ts.tv_usec, header->len); 

} 
+2

“未定义的引用”消息意味着你没有与'libpcap'链接。 'pcap-config --libs'会给你链接所需的标志。 http://developer.apple.com/mac/library/DOCUMENTATION/Darwin/Reference/ManPages/man1/pcap-config.1.html – 2010-02-18 09:33:49

+1

@Alok我认为你是对的我只是设置库目录,而不是链接库。链接'wpcap.lib'和'Packet.lib'后,我得到'localtime_s'和'scanf_s'函数只有2个未定义的引用错误。这些功能在哪里? – 2010-02-18 09:57:02

回答

4

您可以取代你localtime_s电话:

localtime_r(&local_tv_sec, &ltime); 

(注交换参数。)

而且,取代你scanf_s请致电scanf

localtime_s()scanf_s()是Microsoft特有的扩展,并且在MinGW中不可用。

+0

我得到了与'localtime_r'相同的错误,但我使用'localtime'代替了这种方式'ltime = localtime(&local_tv_sec);'它工作。 – 2010-02-18 10:25:09

+0

是的,看起来'localtime_r'在MinGW中不可用。如果你不关心线程安全性,那么用适当的'localtime'调用替换它就好了。 – 2010-02-18 10:36:50

+0

另外,我假设你将'ltime'的类型改为指针。 – 2010-02-18 10:37:14

4

这有点松散相关,但我发现它克服了问题,所以我想贡献一下,所以其他人正在寻找这个线程实际上找到解决方案。

您传递给GCC 的参数的顺序是重要,您需要指定您的“。ç-lwpcap “”之前的文件”,否则你会得到链接错误:喜欢

iflist.c:(.text+0x9d): undefined reference to `pcap_freealldevs' 

sendpack.c:(.text+0x178): undefined reference to `pcap_close' 

这没有错,你的MinGW安装Windows 7或XP,64位或32位,这是传递给GCC的参数只是顺序

所以我用于编译实际的命令是:

cd C:\install\winpcap\WpdPack_4_1_2\WpdPack\Examples-pcap\iflist 
gcc -I ../../include -L ../../lib iflist.c -lwpcap -o iflist.exe 

我希望这有助于。