You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 10, 2019. It is now read-only.
void QAbstractSocket::close()
Reimplemented from QIODevice::close().
Closes the I/O device for the socket and calls disconnectFromHost() to close the socket's connection.
See QIODevice::close() for a description of the actions that occur when an I/O device is closed.
void QAbstractSocket::disconnectFromHost()
Attempts to close the socket. If there is pending data waiting to be written, QAbstractSocket will enter ClosingState and wait until all data has been written. Eventually, it will enter UnconnectedState and emit the disconnected() signal.
我在 tcprelay.cpp 中发现了以下代码
看下Qt文档对
close()
的描述close()
内部调用了disconnectFromHost()
, 再看文档对disconnectFromHost()的描述调用
disconnectFromHost()
后QAbstractSocket对象如果还有没发送完的数据, 将会处于ClosingState
的状态, 等待数据发送. 最终变成UnconnectedState
状态.举一个实例:
假设
local
网络速度较慢,remote
网络速度较快,remote
接收到了大量的数据, 然后remote
的远端紧接着立即主动断开了连接,remote
会发出error(RemoteHostClosedError)信号, 接下来是这些调用:TcpRelay::onRemoteTcpSocketError()
->TcpRelay::close()
->TcpRelay::finished()
TcpRelay::finished()
会导致TcpRelay对象被释放,local
和remote
随其同时释放, 但由于local
网络速度较慢, 可能还出于ClosingState
的状态, 数据尚未发送完毕就被释放掉了The text was updated successfully, but these errors were encountered: