接收整个UDP数据包
我正在用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于接收数据包,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.
以下是一些在 Windows 中过滤数据包的
上。网络层。
层
要创建 WinDivert 使用的标注驱动程序,您现在应该
实现内核驱动程序。网络层。
Here is some to filter packet in windows:
upper. network layer.
layer
to create callout driver that WinDivert use, you should now to
implement kernel driver. network layer.