don't call Disconnect() if the connection had been already lost (closes #10747)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60568 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -125,6 +125,8 @@ public:
|
|||||||
void Server_OnRequest(wxSocketEvent& event);
|
void Server_OnRequest(wxSocketEvent& event);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
void HandleDisconnect(wxTCPConnection *connection);
|
||||||
|
|
||||||
DECLARE_EVENT_TABLE()
|
DECLARE_EVENT_TABLE()
|
||||||
wxDECLARE_NO_COPY_CLASS(wxTCPEventHandler);
|
wxDECLARE_NO_COPY_CLASS(wxTCPEventHandler);
|
||||||
};
|
};
|
||||||
@@ -687,6 +689,16 @@ BEGIN_EVENT_TABLE(wxTCPEventHandler, wxEvtHandler)
|
|||||||
EVT_SOCKET(_SERVER_ONREQUEST_ID, wxTCPEventHandler::Server_OnRequest)
|
EVT_SOCKET(_SERVER_ONREQUEST_ID, wxTCPEventHandler::Server_OnRequest)
|
||||||
END_EVENT_TABLE()
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
|
void wxTCPEventHandler::HandleDisconnect(wxTCPConnection *connection)
|
||||||
|
{
|
||||||
|
// connection was closed (either gracefully or not): destroy everything
|
||||||
|
connection->m_sock->Notify(false);
|
||||||
|
connection->m_sock->Close();
|
||||||
|
|
||||||
|
connection->SetConnected(false);
|
||||||
|
connection->OnDisconnect();
|
||||||
|
}
|
||||||
|
|
||||||
void wxTCPEventHandler::Client_OnRequest(wxSocketEvent &event)
|
void wxTCPEventHandler::Client_OnRequest(wxSocketEvent &event)
|
||||||
{
|
{
|
||||||
wxSocketBase *sock = event.GetSocket();
|
wxSocketBase *sock = event.GetSocket();
|
||||||
@@ -694,18 +706,16 @@ void wxTCPEventHandler::Client_OnRequest(wxSocketEvent &event)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
wxSocketNotify evt = event.GetSocketEvent();
|
wxSocketNotify evt = event.GetSocketEvent();
|
||||||
wxTCPConnection *connection = (wxTCPConnection *)(sock->GetClientData());
|
wxTCPConnection * const
|
||||||
|
connection = static_cast<wxTCPConnection *>(sock->GetClientData());
|
||||||
|
|
||||||
// This socket is being deleted; skip this event
|
// This socket is being deleted; skip this event
|
||||||
if (!connection)
|
if (!connection)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// We lost the connection: destroy everything
|
|
||||||
if ( evt == wxSOCKET_LOST )
|
if ( evt == wxSOCKET_LOST )
|
||||||
{
|
{
|
||||||
sock->Notify(false);
|
HandleDisconnect(connection);
|
||||||
sock->Close();
|
|
||||||
connection->OnDisconnect();
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -826,10 +836,7 @@ void wxTCPEventHandler::Client_OnRequest(wxSocketEvent &event)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case IPC_DISCONNECT:
|
case IPC_DISCONNECT:
|
||||||
sock->Notify(false);
|
HandleDisconnect(connection);
|
||||||
sock->Close();
|
|
||||||
connection->SetConnected(false);
|
|
||||||
connection->OnDisconnect();
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case IPC_FAIL:
|
case IPC_FAIL:
|
||||||
|
Reference in New Issue
Block a user