From 84c0c62f5e2596945c623a28ea898a080042c9f2 Mon Sep 17 00:00:00 2001 From: FuckYou Date: Fri, 29 Sep 2017 01:30:49 +0200 Subject: [PATCH] Fixed error causing client to hang until remote host closed the connection --- CPPTools/Net.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CPPTools/Net.cpp b/CPPTools/Net.cpp index bab19a3..efd1564 100644 --- a/CPPTools/Net.cpp +++ b/CPPTools/Net.cpp @@ -185,11 +185,11 @@ namespace IO { } bool NetClient::isEncrypted() { return encrypted; } void NetClient::update() { - if (!connected(_socket)) { + /*if (!connected(_socket)) { // Check this later... _open = false; close(); return; - } + }*/ int iResult = 0, rdErr; unsigned long rCount; rdErr = ioctlsocket(_socket, FIONREAD, &rCount);