gpt4 book ai didi

c# - 在 C# 中从服务器轮询连接的客户端

转载 作者:可可西里 更新时间:2023-11-01 02:54:30 27 4
gpt4 key购买 nike

我正在尝试轮询来自连接到我的服务器的客户端的连接。

当您使用 poll 时,您需要给它一个套接字连接,但在服务器端,套接字绑定(bind)到它自己的 IP 地址和特定端口。让另一个套接字连接到同一个端口但使用客户端的 IP 地址将不起作用,因为您不能在同一个套接字上有多个连接。

我只是想知道什么是不断检查客户端是否仍连接到服务器以及何时断开连接的好方法?

我在考虑某种超时检查之类的。我只是想知道是否有任何通用或正确的方法来实现这一目标。

我试过 Socket.Poll 但它似乎没有达到我想要的效果。

重申一下我的问题,您如何使用 C# 中的 TCP 套接字检查客户端是否连接到服务器端?

最佳答案

socket.Receive 只会返回 0。来自 MSDN

If you are using a connection-oriented Socket, the Receive method will read as much data as is available, up to the size of the buffer. If the remote host shuts down the Socket connection with the Shutdown method, and all available data has been received, the Receive method will complete immediately and return zero bytes.

还有Connected Socket 类中的属性(如果需要)。

关于c# - 在 C# 中从服务器轮询连接的客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24876180/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com