• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

多个套接字可以和 UDP 的同一端口相关联吗?

用户头像
it1352
帮助1

问题说明

我认为多个套接字可以与同一个 TCP 端口相关联.

I think multiple sockets can be associated with same TCP port.

但是同样的事情也适用于 UDP 吗?

But can the same thing work for UDP?

正确答案

#1

在 TCP 中将多个套接字与一个端口关联的唯一方法是侦听然后接受.

The only way to associate multiple sockets with a port in TCP is by listening and then accepting.

这种情况下的目的是为每个传入的客户端提供一个唯一的套接字,以保持它们的字节流分开.

The purpose in that case is to give every incoming client a unique socket so as to keep their byte streams separate.

在 UDP 的情况下您不需要它,因为没有字节流.您可以使用单个 UDP 套接字编写整个 UDP 服务器.您只需读取,发送给该客户端的处理程序,处理程序通过同一个套接字写回响应.

You don't need that in the case of UDP because there are no byte streams. You can write an entire UDP server using a single UDP socket. You just read, despatch to a handler for that client, the handler writes the response back via the same socket.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfgakk
系列文章
更多 icon
同类精品
更多 icon
继续加载