如何在winpcap库中使用pcap_sendqueue_queue()?
我使用 pcap_sendPacket() 发送我手动制作的原始 UDP 数据包。
我想通过减少上下文切换来提高代码的性能
。
但我得到了有关 pcap_sendqueue_queue() 函数的示例代码,
它一次发送可变数量的数据包。但它从
已转储的 .pcap 文件和 .cap 文件中读取读取内容。
我想使用这个queue()函数来发送与我
手动制作的相同的UDP数据包。
这是使用 pcap_sendpacket() 发送数据包的链接?
如何修改此代码以在队列()中发送此数据包?
提前致谢
I used pcap_sendPacket() to send raw UDP packet which i crafted manually.
i want to increase the performance of my code by reducing the
context switches.
But i got the sample code about pcap_sendqueue_queue() function
it sends variable number of packets in a time.but it reads read from
the already dumped .pcap file and .cap file.
i want to use this queue() function to send the same UDP packets which i crafted
it manually.
this is the link for sending the packets using pcap_sendpacket()?
how to modify this code to send this packets in a queue()?
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要使用 winpcap 的数据包队列,您必须调用:
pcap_sendqueue_alloc
- 为原始数据包分配队列;pcap_sendqueue_queue
- 将原始数据包添加到队列(采用pcap
格式);pcap_sendqueue_transmit
- 发送队列。然而,我没有看到你的问题中没有在 winpcap 文档(或 Google)中涵盖的要点。
To use winpcap's packet queue you'll have to invoke:
pcap_sendqueue_alloc
- to allocate a queue for raw packets;pcap_sendqueue_queue
- to add raw packets to the queue (inpcap
format);pcap_sendqueue_transmit
- to send the queue.Yet, I don't see the point in your question that is not covered in winpcap docs (or Google).