make it configurable
This commit is contained in:
parent
e8a99eb35a
commit
e252ed04e9
@ -17,6 +17,7 @@ modpass=changeme
|
|||||||
logbuffer=500
|
logbuffer=500
|
||||||
logging=modcall
|
logging=modcall
|
||||||
maximum_statements=10
|
maximum_statements=10
|
||||||
|
multiclient_limit=15
|
||||||
|
|
||||||
[Dice]
|
[Dice]
|
||||||
max_value=100
|
max_value=100
|
||||||
|
@ -281,6 +281,11 @@ class Server : public QObject {
|
|||||||
*/
|
*/
|
||||||
QStringList gimp_list;
|
QStringList gimp_list;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Integer representing the maximum number of clients allowed to connect from the same IP
|
||||||
|
*/
|
||||||
|
int multiclient_limit;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
/**
|
/**
|
||||||
* @brief Handles a new connection.
|
* @brief Handles a new connection.
|
||||||
|
@ -308,12 +308,10 @@ void AOClient::pktWebSocketIp(AreaData* area, int argc, QStringList argv, AOPack
|
|||||||
multiclient_count++;
|
multiclient_count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (multiclient_count > 5) {
|
if (multiclient_count > server->multiclient_limit) {
|
||||||
socket->close();
|
socket->close();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
qDebug() << "MULTICLIENT COUNT WS: " << multiclient_count;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -123,9 +123,7 @@ void Server::clientConnected()
|
|||||||
multiclient_count++;
|
multiclient_count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
qDebug() << "MULTICLIENT COUNT: " << multiclient_count;
|
if (multiclient_count > multiclient_limit && !client->remote_ip.isLoopback()) // TODO: make this configurable
|
||||||
|
|
||||||
if (multiclient_count > 5 && !client->remote_ip.isLoopback()) // TODO: make this configurable
|
|
||||||
is_at_multiclient_limit = true;
|
is_at_multiclient_limit = true;
|
||||||
|
|
||||||
if (is_banned) {
|
if (is_banned) {
|
||||||
@ -281,6 +279,10 @@ void Server::loadServerConfig()
|
|||||||
afk_timeout = config.value("afk_timeout", "300").toInt(&afk_timeout_conversion_success);
|
afk_timeout = config.value("afk_timeout", "300").toInt(&afk_timeout_conversion_success);
|
||||||
if (!afk_timeout_conversion_success)
|
if (!afk_timeout_conversion_success)
|
||||||
afk_timeout = 300;
|
afk_timeout = 300;
|
||||||
|
bool multiclient_limit_conversion_success;
|
||||||
|
multiclient_limit = config.value("multiclient_limit", "15").toInt(&multiclient_limit_conversion_success);
|
||||||
|
if (!multiclient_limit_conversion_success)
|
||||||
|
multiclient_limit = 15;
|
||||||
config.endGroup();
|
config.endGroup();
|
||||||
|
|
||||||
//Load dice values
|
//Load dice values
|
||||||
|
Loading…
Reference in New Issue
Block a user