diff options
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/network.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/network/network.cpp b/src/network/network.cpp index 533ed593a..aad7e7ae6 100644 --- a/src/network/network.cpp +++ b/src/network/network.cpp @@ -936,7 +936,10 @@ void NetworkDisconnect(bool blocking) NetworkClose(); } -/* Receives something from the network */ +/** + * Receives something from the network. + * @return true if everthing went fine, false when the connection got closed. + */ static bool NetworkReceive() { NetworkClientSocket *cs; @@ -991,7 +994,7 @@ static bool NetworkReceive() } } } - return true; + return _networking; } /* This sends all buffered commands (if possible) */ |