C:UDP发送&接收数据包
我一直在尝试在 C 中使用 socket() api,但到目前为止还没有成功。 我想向特定设备发送请求(地址:192.168.2.55 端口:12850),然后该设备将数据返回到应用程序。我如何在 C 中执行此操作。我使用的是 Mac,所以“Unix 方式”如果与 Windows 不同...
谢谢,圣诞快乐!
I've been trying to use the socket() api in C but no luck so far.
I would like to send a request to a specific device (Address: 192.168.2.55 Port: 12850) which will then return data to the application. How do I do this in C. I'm on a Mac so "the Unix way" if that differs from Windows...
Thanks and merry christmas!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
socket编程介绍参见http://beej.us/guide/bgnet/
For socket programming introduction, see http://beej.us/guide/bgnet/
在客户端建立套接字所涉及的步骤如下:
在服务器端建立套接字所涉及的步骤如下:
检查您是否已按照迄今为止编写的代码执行了这些步骤。
The steps involved in establishing a socket on the client side are as follows:
The steps involved in establishing a socket on the server side are as follows:
Check to see if you have followed these steps thusfar with the code you have written.