如何在libpcap中使用pcap_stats?

发布于 2024-09-04 05:20:48 字数 547 浏览 3 评论 0原文

我将以下函数添加到 sniffex 代码中 (http://www.tcpdump.org/sniffex.c< /a>):

typedef struct pcap_stat mystat;

mystat *mystatp;

/* Put the interface in statstics mode */
if(pcap_stats(handle, mystatp) < 0)
{
    fprintf(stderr,"\nError setting the mode.\n");
    pcap_close(handle);
    /* Free the device list */
    return;
}

Sniffex 代码对我来说工作正常 - 但一旦我添加此代码,我就会收到分段错误错误:(

有人可以帮我吗?

非常感谢。

I added the following function to the sniffex code (http://www.tcpdump.org/sniffex.c):

typedef struct pcap_stat mystat;

mystat *mystatp;

/* Put the interface in statstics mode */
if(pcap_stats(handle, mystatp) < 0)
{
    fprintf(stderr,"\nError setting the mode.\n");
    pcap_close(handle);
    /* Free the device list */
    return;
}

Sniffex code is working fine for me - but as soon as I add this code, I am getting a segmentation fault error :(

Can anyone please help me out ?

Thanks a ton.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里人 2024-09-11 05:20:48

我相信您忘记为 mystat 分配内存。

试试这个:

typedef struct pcap_stat mystat;

...

mystat actualStat; /* allocate memory for mystat on stack - you can also do it on the heap by malloc-ing */
mystat *mystatp = &actualStat; /* use allocated memory */

/* Put the interface in statistics mode */
if(pcap_stats(handle, mystatp) < 0)
{
    fprintf(stderr,"\nError setting the mode.\n");
    pcap_close(handle);
    /* Free the device list */
    return;
}

Pcap.Net 中,我使用 pcap_stats_ex() 但它可能只可用在 WinPcap 上而不是在 libpcap 上。

I believe you forgot to allocate memory for mystat.

Try this:

typedef struct pcap_stat mystat;

...

mystat actualStat; /* allocate memory for mystat on stack - you can also do it on the heap by malloc-ing */
mystat *mystatp = &actualStat; /* use allocated memory */

/* Put the interface in statistics mode */
if(pcap_stats(handle, mystatp) < 0)
{
    fprintf(stderr,"\nError setting the mode.\n");
    pcap_close(handle);
    /* Free the device list */
    return;
}

In Pcap.Net I use pcap_stats_ex() but it's probably only available on WinPcap and not on libpcap.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文