在 UDP 套接字编程中我应该了解什么?
我正在从事UDP套接字编程的嵌入式开发。我需要知道什么?如何手动建立连接?但指定端口和内存地址?
I'm working on embedded development on UDP socket programming. What all do I need to know? How to make the connection manually? but specifying the ports and memory addresses?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UDP 是一种无连接传输。不存在“联系”。您可以在发送的每个数据报上指定目标 IP/端口。
UDP is a connection-less transport. There is no "connection". You specify the destination IP/Port on each individual datagram you send.