summaryrefslogtreecommitdiff
path: root/src/clientiface.cpp
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2017-08-16 23:48:29 +0200
committerSmallJoker <mk939@ymail.com>2018-06-03 17:31:59 +0200
commit151c19a6be591d19d83cdd3c69583e7bf0828440 (patch)
tree37470c00d6cb1472aff14cb86fe3bf53c13d7439 /src/clientiface.cpp
parent9d40d89d2721359b02c578366ebfd0ef1b91116d (diff)
downloadminetest-151c19a6be591d19d83cdd3c69583e7bf0828440.tar.gz
minetest-151c19a6be591d19d83cdd3c69583e7bf0828440.tar.bz2
minetest-151c19a6be591d19d83cdd3c69583e7bf0828440.zip
ClientInterface: add a function to verify (correctly) if user limit was reached (#6258)
* ClientInterface: add a function to verify (correctly) if user limit was reached CS_HelloSent is a better indicator of active slots than CS_Created, which are session objects created after init packet reception Switch existing checks to ClientInterface::isUserLimitReached() Use range-based for loop for getClientIds() used function too This will fix #6254 (not the memory overhead if init is flooded)
Diffstat (limited to 'src/clientiface.cpp')
-rw-r--r--src/clientiface.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/clientiface.cpp b/src/clientiface.cpp
index 68bd4afe7..475397279 100644
--- a/src/clientiface.cpp
+++ b/src/clientiface.cpp
@@ -633,6 +633,16 @@ std::vector<u16> ClientInterface::getClientIDs(ClientState min_state)
return reply;
}
+/**
+ * Verify if user limit was reached.
+ * User limit count all clients from HelloSent state (MT protocol user) to Active state
+ * @return true if user limit was reached
+ */
+bool ClientInterface::isUserLimitReached()
+{
+ return getClientIDs(CS_HelloSent).size() >= g_settings->getU16("max_users");
+}
+
void ClientInterface::step(float dtime)
{
m_print_info_timer += dtime;