1

我正在尝试将 NPCap 库安装到 Visual Studio 中,以便可以从文档中运行此代码。

#include "pcap.h"

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

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

/* Print the list */
for (d = alldevs; d != NULL; 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 Npcap is installed.\n");
    return;
}

/* We don't need any more the device list. Free it */
pcap_freealldevs(alldevs);

当我运行这段代码时,我得到了很多错误,其中之一是"cannot open source file "pcap/pcap.h". 其他错误表明变量未定义。我相信我没有正确安装库。

我在桌面的同一目录中同时拥有 .lib 文件和 .h 文件,如此屏幕截图所示。

目录

我还将 Visual Studio 中的目录更改为适当的文件夹。

改变1

改变2

根据中的说明:如何将其他库添加到 Visual Studio 项目?

4

1 回答 1

0

从错误

“无法打开源文件“pcap/pcap.h”

看起来它需要一个目录结构。名为“pcap”的目录,其中包含所有头文件。

您能否确认您也在库目录中添加了此文件夹路径。链接供参考。

  1. https://docs.microsoft.com/en-us/cpp/build/reference/vcpp-directories-property-page?view=vs-2019
  2. https://www.tutorialspoint.com/how-to-include-libraries-in-visual-studio-2012
于 2020-01-24T06:39:33.507 回答