Winsock 的示例?
你们对winsock 的资源有何推荐?
我有一个任务,我们只有几天的时间来做,需要使用 UDP 发送一个简单的数据包(并接收相同类型的数据包)。
我对 C# 套接字相当熟悉,但对 C++ 却一无所知。
有什么建议或资源吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
你们对winsock 的资源有何推荐?
我有一个任务,我们只有几天的时间来做,需要使用 UDP 发送一个简单的数据包(并接收相同类型的数据包)。
我对 C# 套接字相当熟悉,但对 C++ 却一无所知。
有什么建议或资源吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
部分内容如下:
Some are as follows:
除了 MSDN 资源“Winsock 入门”已经提到,我会推荐 tangentsoft.net 上的“Winsock 程序员常见问题解答”。
Besides the MSDN resource "Getting Started with Winsock" mentioned already I would recommend the "Winsock Programmer's FAQ" on tangentsoft.net.
您需要 UDP,因此请使用
API (Windows)。
http://msdn.microsoft.com/en- us/library/ms740148%28VS.85%29.aspx
http://msdn.microsoft.com/en-us/library/ms740120%28VS.85%29.aspx
You need UDP, so use
APIs (Windows).
http://msdn.microsoft.com/en-us/library/ms740148%28VS.85%29.aspx
http://msdn.microsoft.com/en-us/library/ms740120%28VS.85%29.aspx
入门分步指南怎么样使用 Windows Sockets 编程(来自 MSDN 上的 Winsock 文档)。
How about the step-by-step guide to getting started with Windows Sockets programming from the Winsock documentation on MSDN.
可能比您现在需要的更高级,但是...
我有一系列(相当旧的)文章,介绍如何使用 Winsock 和 IO 完成端口以及免费的代码框架编写可扩展服务器。
文章的代码和链接可在此处获取。
Possibly more advanced than you need right now but...
I have a series of (rather old) articles on writing scalable servers using Winsock and IO Completion Ports and a free framework of code.
The code and links to the articles are available here.