1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-16 06:15:24 +00:00

Update: Made global client limit warning easier to understand

This commit is contained in:
Philipp Schafft 2021-11-27 12:27:19 +00:00
parent 52634884ac
commit 7e9bc9005c

View File

@ -148,7 +148,7 @@ int client_create(client_t **c_ptr, connection_t *con, http_parser_t *parser)
global.clients++;
if (config->client_limit < global.clients) {
ICECAST_LOG_WARN("server client limit reached (%d/%d)", config->client_limit, global.clients);
ICECAST_LOG_WARN("Server's configured global client limit reached (%d of %d), rejecting client", global.clients, config->client_limit);
} else {
ret = 0;
}