fix memory leak in websockets

This commit is contained in:
scatterflower 2020-09-02 09:53:55 -05:00
parent 14f442be6c
commit d2fec1cce9
3 changed files with 7 additions and 2 deletions

View File

@ -27,6 +27,7 @@ AOClient::AOClient(Server* p_server, QTcpSocket* p_socket, QObject* parent)
current_area = 0;
current_char = "";
remote_ip = p_socket->peerAddress();
is_partial = false;
}
void AOClient::clientData()

View File

@ -43,10 +43,14 @@ void WSClient::onTcpData()
void WSClient::onWsDisconnect()
{
tcp_socket->disconnectFromHost();
if (tcp_socket != nullptr)
tcp_socket->disconnectFromHost();
}
void WSClient::onTcpDisconnect()
{
qDebug() << "deleted";
web_socket->close();
tcp_socket->deleteLater();
web_socket->deleteLater();
}

View File

@ -46,8 +46,8 @@ void WSProxy::wsConnected()
connect(new_ws, &QWebSocket::textMessageReceived, client, &WSClient::onWsData);
connect(new_tcp, &QTcpSocket::readyRead, client, &WSClient::onTcpData);
connect(new_ws, &QWebSocket::disconnected, client, &WSClient::onWsDisconnect);
connect(new_tcp, &QTcpSocket::disconnected, client, &WSClient::onTcpDisconnect);
connect(new_tcp, &QTcpSocket::disconnected, this, [=] {
client->onTcpDisconnect();
clients.removeAll(client);
client->deleteLater();
});