-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
严重bug,远程主机强迫关闭现有连接 #767
Comments
是否在代码 |
重启后又恢复正常,但是过几个小时,客户端又开始无法再次建立新连接。 |
_logger.LogError(e, $"Listener[{this.ToString()}] failed to do AcceptAsync"); 这个记录的什么?你拿到了没有? |
以下是报错的详细内容: 然后几个小时后,后续客户端已经无法再建立新连接
|
我再完整的描述一下: 如上,我部署了tcp服务端,目前大约有200多个tcp客户端连接。 我同时侦听了1799,1800端口。 经测试,如上错误一直在报,大概一分钟左右报一次。 持续几个小时后,1799端口已无法再次连接。但是1800端口(此端口为测试端口,目前只有几个tcp客户端连接)是正常可以连接的。 请问出现的原因是什么? 猜测是否有资源未正确释放? |
请注意,我替换成原来的SuperSocket1.6老版本后,未发现任何报错信息。也没有出现后续客户端无法连接的情况! |
在线等啊大佬!!! |
在这段代码中,
var client = await listenSocket.AcceptAsync().ConfigureAwait(false);
目前大约有几百个tcp客户端在像我tcp服务端发送报文。
日志一直在报:远程主机强迫关闭现有连接,推测是有不合法的客户端一直在断掉重连,在运行几个小时以后,tcp服务端程序无法再接收新的连接。
The text was updated successfully, but these errors were encountered: