在 C# 中使用一个套接字对象发送和接收多个套接字

发布于 2024-10-17 14:11:54 字数 114 浏览 2 评论 0原文

在 C# 中,我有一个连接多个客户端的服务器应用程序。我只会在接受时实例化新套接字时跟踪 IP 地址和端口。我的问题是,仅使用一个套接字对象可以容纳发送和接收吗?同步和异步套接字都可以吗?例子会有所帮助。提前致谢。

In C#, I have a server application with multiple clients connecting. I will only keep track of the IP address and port when a new socket is instantiated upon accept. My question is that using only one socket object can I accommodate sending and receiving? Is it possible for synchronous and asynchronous sockets? Examples will be helpful. Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

翻了热茶 2024-10-24 14:11:54

使用 UDP 是可能的,使用 TCP 是不可能的,而且既然你提到了 Accept(),我假设你正在使用 TCP,因此这是不可能的......

It's possible with UDP, it's not possible with TCP and since you mention Accept() I assume you're using TCP and therefore it's not possible...

狼性发作 2024-10-24 14:11:54

您必须使用accept方法返回的套接字对象来向特定客户端发送和接收。您不能为所有客户端使用单个套接字。套接字是完成通信的端点

You have to use the socket object that is returned by accept method to send and receive to particular client. you can not use a single socket for all clients. socket is the end point through which communication is done

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