UDP客户端的Windows C套接字编程
我正在尝试查找一些 Windows 套接字的示例程序。特别是,我有兴趣用 C(在 Visual Studio 中)编写一个使用 UDP 与服务器通信的客户端。我没有找到任何具体材料。我尝试了一些示例,但出现了一些链接错误。有没有可用的图书馆。请告诉我。 提前致谢。
I am trying to lookup some example programs for windows socket. Particularly, I am interested in writing a client in C (in visual studio) which communicates to the server using UDP. I din't find any concrete material. I tried some examples but got some linking errors. Is there any library available. Please let me know.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Apache Portable Runtime 支持套接字,并且是跨平台的。
The Apache Portable Runtime supports sockets, and it is cross platform.
我找到了一个简单的库,它提供了网络的实现,但它是针对 C++ 的。 (Windows 的 C++ 套接字类)。您可以查看它使用套接字的实现,或者只是使用它(有简单的客户端和服务器的示例)。
I've found a simple library, which provides implementation of networking, but it is for C++. (C++ Socket Class for Windows). You can look at it's implementation of working with sockets, or just use it (there are examples of simple client and server).