如何在winpcap库中使用pcap_sendqueue_queue()?

发布于 2024-07-16 21:30:13 字数 456 浏览 6 评论 0原文

我使用 pcap_sendPacket() 发送我手动制作的原始 UDP 数据包。

我想通过减少上下文切换来提高代码的性能

但我得到了有关 pcap_sendqueue_queue() 函数的示例代码,

它一次发送可变数量的数据包。但它从

已转储的 .pcap 文件和 .cap 文件中读取读取内容。

我想使用这个queue()函数来发送与我

手动制作的相同的UDP数据包。

这是使用 pcap_sendpacket() 发送数据包的链接?

http://pastebin.com/m402783ae

如何修改此代码以在队列()中发送此数据包?

提前致谢

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()?

http://pastebin.com/m402783ae

how to modify this code to send this packets in a queue()?

thanks in advance

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

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

发布评论

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

评论(1

思慕 2024-07-23 21:30:13

要使用 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 (in pcap 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).

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