回复特定的套接字客户端
我正在使用 C#。 我在 PC A 中有一个套接字服务器,在 PC B、PC C 和 PC D 中有三个套接字客户端。当 PC A 接收数据时,我想将此数据发送到 PC B、PC C 或 PC D。我的意思是我不这样做不想将此数据发送到所有 PC。我只想发送我需要发送的 PC。现在,当服务器从一台客户端 PC 接收数据时,它会发送回所有客户端 PC。谢谢。
I am using C#.
I have one socket server in PC A and three socket clients in PC B,PC C,and PC D.When PC A receives data, I want to send this data to either PC B or PC C or PC D. I mean i don't want to send this data to all PC.I just want to send the PC i need to send. Now, when server receives data from one client PC, it sends back to all clients PC. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PC A 接收的数据需要包括有关应将其传递给哪些客户端的信息。然后,PC A 可以查看当前连接到它的客户端并根据需要转发数据。
The data that PC A receives needs to include information about which client(s) it should be passed on to. PC A can then look at which clients are currently connected to it and forward the data as needed.