pcap_lookupdev总是返回NULL

时间:2017-05-20 08:05:27

标签: c++ pcap winpcap

所以我使用了#include <pcap.h>并且我得到的错误是错误 122 ,我很快就会解释错误 122

这是代码。 请记住,这不是我的代码;我用这段代码来证明发生了什么错误

#include <iostream>
#include <pcap/pcap.h>
#include <Windows.h>
using namespace std;

static int packetCount = 0;

void packetHandler(u_char *userData, const struct pcap_pkthdr* pkthdr, const u_char* packet) {
    cout << ++packetCount << " packet(s) captured" << endl;
}

int main() {
    char *dev;
    pcap_t *descr;
    char errbuf[PCAP_ERRBUF_SIZE];

    dev = pcap_lookupdev(errbuf);
    if (dev == NULL) {
        cout << "pcap_lookupdev() failed: " << errbuf << endl;
        system("pause");
        return 1;
    }

    descr = pcap_open_live(dev, BUFSIZ, 0, -1, errbuf);
    if (descr == NULL) {
        cout << "pcap_open_live() failed: " << errbuf << endl;
        system("pause");
        return 1;
    }

    if (pcap_loop(descr, 10, packetHandler, NULL) < 0) {
        cout << "pcap_loop() failed: " << pcap_geterr(descr);
        system("pause");
        return 1;
    }

    cout << "capture finished" << endl;
    system("pause");
    return 0;
}

现在,一旦我编译并运行,这就是我得到的error

  

pcap_lookupdev()失败:PacketGetAdapterNames:传递给系统调用的数据区域太小。 (122)       按任意键继续 。 。

我用类似的问题搜索了我发布的那个(你的阅读),但它们似乎都在Linux中。 error管理员有关 权限即可。但我不知道如何实现这一点,我将程序作为Admin运行 我得到了这个(猜猜是什么错误)

  

pcap_lookupdev()失败:PacketGetAdapterNames:传递给系统调用的数据区域太小。 (122)       按任意键继续 。 。

相同的error :( 我理解error,但我现在不知道如何阻止它。此error称为error 122

我还为Windows.h添加了system("pause"),所以不要担心,如果我的语法错误,也很抱歉。

1 个答案:

答案 0 :(得分:1)

我提出改进源代码的提议,如下所示:

  • 使用pcap_findalldevs查找所有现有设备。
  • alldevs是一个链接列表,其中包含所有已查找设备的第一个地址。
  • /* Print the list */部分,打印设备并获取下一个设备,依此类推。

查找并打印设备:

pcap_if_t *alldevs, *d;
pcap_t *fp;
int i = 0;
u_int inum;

if (pcap_findalldevs(&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("%d", &inum);

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

最后以live打开设备并继续编码:

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

/* Open the device */
if ( (fp= pcap_open_live(d->name, 100, 1, 20, errbuf) ) == NULL)
{
    fprintf(stderr,"\nError opening adapter\n");
    return -1;
}

通过这种方式,您可以选择任意设备。试试这种方式,看看犯了什么错误?