“组”中的套接字环境?
通常,您有一个服务器和客户端对或两个通过套接字相互连接的对等点。这是一对一的关系。
假设你有 6 个同伴。有没有办法让它们在没有“服务器”的情况下“分组”在一起,以便 1 个对等方可以直接向另一个对等方发送 udp/tcp 消息?
我基本上正在寻找一种方法来做到这一点,而不必为每个关系设置单独的套接字。
如果可能的话,正确的条款是什么?
Typically you have a server and client pair or two peers that connect to each other through a socket. This is a 1 to 1 relationship.
Lets say you had 6 peers. Is there a way for them to be "grouped" together without a "server" so that 1 peer can send a udp/tcp message directly to another?
I'm basically looking for a way to do this without having to set up a separate socket for each relationship.
If this is possible, what are the correct terms?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
UDP 套接字可以使用
sendto()
函数。指定的端点必须正在侦听给定的 IP/端口,但不必已经发起连接。UDP sockets can send data through a non-connected socket using the
sendto()
function. Endpoints specified have to be listening on the given IP/port but do not have to have already initiated a connection.TCP 没有简单的方法,但是使用 UDP,您可以多播。
No easy way with TCP, but with UDP you have multicast.