|
|
@ -28,11 +28,9 @@ ServerSession::~ServerSession() { |
|
|
// the emulated application.
|
|
|
// the emulated application.
|
|
|
|
|
|
|
|
|
// Decrease the port's connection count.
|
|
|
// Decrease the port's connection count.
|
|
|
if (parent->port) |
|
|
|
|
|
|
|
|
if (parent->port) { |
|
|
parent->port->ConnectionClosed(); |
|
|
parent->port->ConnectionClosed(); |
|
|
|
|
|
|
|
|
// TODO(Subv): Wake up all the ClientSession's waiting threads and set
|
|
|
|
|
|
// the SendSyncRequest result to 0xC920181A.
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
parent->server = nullptr; |
|
|
parent->server = nullptr; |
|
|
} |
|
|
} |
|
|
@ -74,9 +72,6 @@ void ServerSession::ClientDisconnected() { |
|
|
handler->ClientDisconnected(this); |
|
|
handler->ClientDisconnected(this); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// TODO(Subv): Force a wake up of all the ServerSession's waiting threads and set
|
|
|
|
|
|
// their WaitSynchronization result to 0xC920181A.
|
|
|
|
|
|
|
|
|
|
|
|
// Clean up the list of client threads with pending requests, they are unneeded now that the
|
|
|
// Clean up the list of client threads with pending requests, they are unneeded now that the
|
|
|
// client endpoint is closed.
|
|
|
// client endpoint is closed.
|
|
|
pending_requesting_threads.clear(); |
|
|
pending_requesting_threads.clear(); |
|
|
|