接收整个UDP数据包

发布于 2024-09-14 02:01:33 字数 199 浏览 3 评论 0原文

我正在用 C++ 编写一个用于 Windows 的 UDP 代理应用程序,该应用程序使用 Winsock 发送和接收 UDP 数据包。问题是我需要处理整个数据包,而不仅仅是数据和 UDP 和/或 IP 标头。我尝试过使用 IP_HDRINCL 的原始套接字(可能拼写错误),但它仍然从数据包中截取一些信息。如果在winsock中不可能的话,是否有某种库或其他东西可以让我完成这个任务?

I am programming a UDP proxy application for Windows in C++ that sends and receives UDP packets with Winsock. The problem is that I need to work with the ENTIRE packet, not just the data and UDP and/or IP header. I have tried raw sockets with IP_HDRINCL (might be misspelled), but it still chops off some information from the packet. Is there some sort of library or something, if not possible in winsock, that will let me accomplish this?

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

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

发布评论

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

评论(2

绮烟 2024-09-21 02:01:33

对于接收数据包,WinPCAP 将让您执行所有这些操作以及更多操作,并且有示例代码此处 显示了如何捕获到达接口的所有数据包。

For receiving packets, WinPCAP will let you do all of this and more, and there's sample code here which shows how to capture all of the packets arriving on an interface.

太阳哥哥 2024-09-21 02:01:33

以下是一些在 Windows 中过滤数据包的

  1. 方法: WinDivert Windows 7、2008 或
    上。网络层。
  2. WinpkFilter 3.0 商业版,Windows XP 及更高版本。数据链
  3. pcausa,商业。数据链路层
  4. Windows 过滤平台数据包修改示例 示例
    要创建 WinDivert 使用的标注驱动程序,您现在应该
    实现内核驱动程序。网络层。

Here is some to filter packet in windows:

  1. WinDivert Free open source project work on Windows 7, 2008 or
    upper. network layer.
  2. WinpkFilter 3.0 Commercial, Windows XP and upper. datalink
    layer
  3. pcausa, Commercial. datalink layer
  4. Windows Filtering Platform Packet Modification Sample A sample
    to create callout driver that WinDivert use, you should now to
    implement kernel driver. network layer.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文