监听UDP并监控
我已经创建了一个 UDP 套接字(UDP 已绑定),现在我希望服务器能够侦听,如果任何客户端尝试连接,则侦听 UDP 将接受该套接字并将其传递给新线程以执行 recvfrom 和sento 操作。
那么我该怎么做呢?客户端如何告诉服务器他想要连接?我可以在 UDP 中使用 FD_CONNECT
和 FD_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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.