监听UDP并监控

发布于 2024-10-22 11:40:35 字数 215 浏览 2 评论 0原文

我已经创建了一个 UDP 套接字(UDP 已绑定),现在我希望服务器能够侦听,如果任何客户端尝试连接,则侦听 UDP 将接受该套接字并将其传递给新线程以执行 recvfrom 和sento 操作。

那么我该怎么做呢?客户端如何告诉服务器他想要连接?我可以在 UDP 中使用 FD_CONNECTFD_ACCEPT 吗?

谢谢。

I have already created a UDP socket (UDP has been bound) and now i wanted the server to listen and if any client tries to connect, the listening UDP will then accept and pass the socket to a new thread to perform recvfrom and sento operation.

So how am I going to do that? How the client tells the server that he wanted to connect? May I use FD_CONNECT and FD_ACCEPT in UDP?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里的微风 2024-10-29 11:40:35

UDP 是一种无连接协议。您不需要连接 udp 套接字。请注意,在 UDP 套接字上使用连接可能与您期望的语义不同:在 Linux 上,例如在 UDP 套接字上调用连接,将该套接字“绑定”到特定 IP 地址,但这只是本地 IP 地址绑定,网络上什么也没有发生。

UDP is a connectionless protocol. You don't need to connect an udp socket. Pay attention that use a connect on an UDP socket may have a different semantic respect what you are expecting: on linux for example a connect invoked on a UDP socket , "bind" that socket to a specific IP address, but this is only a local binding, nothing happens over the network.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文