Terminate with the given error code if the disconnect timeout expires instead of -1

This commit is contained in:
Cameron Gutman 2019-07-23 23:41:48 -04:00
parent 25dfbcfd41
commit c322ed9437

View File

@ -501,7 +501,7 @@ static void controlReceiveThreadFunc(void* context) {
// assume the server died tragically, so go ahead and tear down. // assume the server died tragically, so go ahead and tear down.
PltUnlockMutex(&enetMutex); PltUnlockMutex(&enetMutex);
Limelog("Disconnect event timeout expired\n"); Limelog("Disconnect event timeout expired\n");
ListenerCallbacks.connectionTerminated(-1); ListenerCallbacks.connectionTerminated(terminationErrorCode);
return; return;
} }
} }