用于网络数据包解析/组装的.NET Framework?
在编写Tcp/IP程序时,我们经常会进行数据包组装和解析,那么有没有一个框架可以让我们的生活更轻松呢?
我知道这很难实施。
编辑: 需要澄清的是:
- 应用程序级数据包
- 可能需要与 C++ 应用程序通信,因此 .net 序列化不适用。
when programming Tcp/IP program, we often will do data packet assembling and parsing, so is there a framework to make our life easier?
I know this is hard to implement.
Edit:
to clarify:
- application level packet
- it may need to talk to c++ application, so .net serialization is not applicable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Pcap.NET 可能就是您想要的:
Pcap.NET may be what you're after:
如果您可以使用自己的应用协议,协议缓冲区可能是正确的工具使用。
否则,这取决于您正在处理的协议。对于基于 MIME 的协议,您可以利用Sharp MIME 工具。
If you can use your own application protocol, Protocol Buffers might be the right tool to use.
Otherwise it depends on the protocol you are dealing with. For MIME based protocols you can leverage Sharp MIME tools.
Sharppcap,http://sharppcap.sf.net 也提供此功能并支持多种数据包类型。也适用于 Windows、Mac 和 Linux。
Sharppcap, http://sharppcap.sf.net also provides this functionality and supports a wide range of packet types. Also works on windows, mac and Linux.