Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个监听两个特定端口的套接字。当客户端请求到来时,我怎么知道它来自哪个端口
您不能将单个套接字绑定到多个端口。套接字仅与“端口地址”对绑定一次。您需要创建几个侦听套接字并将它们中的每一个绑定到本地地址(它们可以相同)和端口(它们不同)。
你的问题毫无意义。没有“侦听两个特定端口的套接字”之类的东西。你需要两个插座。然后套接字本身会告诉您数据来自哪个端口。