SharpPcap OnPcapStatistics 事件永远不会触发?
我正在尝试让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您刚刚发现了一个错误!
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