SharpPcap OnPcapStatistics 事件永远不会触发?

发布于 2024-12-04 21:20:05 字数 434 浏览 1 评论 0原文

我正在尝试让 SharpPcap 统计工作,但 OnPcapStatistics 事件从未触发。

代码如下: SharpPcap 示例 11:统计

代码项目文章: SharpPcap:统计

有人知道为什么吗?

I am trying to get SharpPcap Statistics to work, but the OnPcapStatistics event never fires.

Here's the code: SharpPcap Example 11: statistics

Code project article: SharpPcap: Statistics

Does anyone know why?

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

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

发布评论

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

评论(1

独木成林 2024-12-11 21:20:05

您刚刚发现了一个错误!

WinPcapDevice 正在创建一个新的 SendPacketArrivalEvent(),而不是覆盖它。将 PcapDevice.SendPacketArrivalEvent() 修改为虚拟,将 WinPcapDevice.SendPacketArrivalEvent() 修改为覆盖,现在调用正确的方法。

问题在于,由于 WinPcapDevice 正在创建一个新方法而不是重写它,因此 PcapDevice 正在捕获数据包并调用其自己的 SendPacketArrivalEvent()。此实现不处理统计事件,因为它们特定于 WinPcapDevices。

修复了该问题,将程序集信息更新到 4.0.1 并将程序集上传到 filedropper:

http://www.filedropper。 com/sharppcap

如果你可以尝试一下并看看它是否有效,我会将修复检查到 git 中,它将随 SharpPcap 的下一个版本一起发布。

再次感谢您的错误报告。

克里斯

SharpPcap 的作者

You just found a bug!

WinPcapDevice was creating a new SendPacketArrivalEvent() instead of overriding it. Modified PcapDevice.SendPacketArrivalEvent() to be a virtual and WinPcapDevice.SendPacketArrivalEvent() to be an override and now the correct method is called.

The issue was that because WinPcapDevice was creating a new method instead of overriding it that PcapDevice was capturing a packet and calling its own SendPacketArrivalEvent(). This implementation doesn't handle statistics events as they are specific to WinPcapDevices.

Fixed the issue, updated the assembly info to 4.0.1 and uploaded the assembly to filedropper:

http://www.filedropper.com/sharppcap

If you could try that and see that it works I'll check the fix into git and it will go out with the next release of SharpPcap.

Thanks again for the bug report.

Chris

Author of SharpPcap

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