为了账号安全,请及时绑定邮箱和手机立即绑定

Golang TCP 错误 wsarecv

Golang TCP 错误 wsarecv

Go
天涯尽头无女友 2021-11-01 17:35:10
我正在编写一个可以侦听的应用程序tcp connection(请参阅此示例)。当tcp connection 断开连接时,我收到错误read tcp ip_server.:port1->ip_client:port2: wsarecv: An existing connection was forcibly closed by the remote host. 我预期错误EOF和超时(for conn.SetReadDeadline())并尝试使用以下代码捕获错误:if err != nil {         log.Println("getting error from listener")    // I thought, listener can continue work another cases    if neterr, ok := err.(net.Error); ok && neterr.Timeout() || err == io.EOF {        log.Println("Closing connection...")        break // connection will be closed     }}有人知道这个错误吗?您知道如何捕获此错误以及何时会发生此错误吗?提前致谢 !
查看完整描述

1 回答

?
GCT1015

TA贡献1827条经验 获得超4个赞

此错误的常见原因是您通过已被对等方关闭的连接发送数据。换句话说,应用程序协议错误。


查看完整回答
反对 回复 2021-11-01
  • 1 回答
  • 0 关注
  • 610 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信