“组”中的套接字环境?

发布于 2024-11-28 22:18:22 字数 200 浏览 0 评论 0原文

通常,您有一个服务器和客户端对或两个通过套接字相互连接的对等点。这是一对一的关系。

假设你有 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 技术交流群。

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

发布评论

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

评论(2

拥抱我好吗 2024-12-05 22:18:23

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.

開玄 2024-12-05 22:18:22

TCP 没有简单的方法,但是使用 UDP,您可以多播

No easy way with TCP, but with UDP you have multicast.

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