X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=apps%2Fsilcd%2Fcommand_reply.c;h=a31588d6e71d529ba4f54e0b5ee12b81fa36b2a5;hb=4993b03b9ccd85373a60f9cf5c8d99a865898fda;hp=b54126cfcd7c48645ed73957f65a642ca61ad606;hpb=454d63a3ea0c954f9d40b9e7725fd9ea48503f4c;p=silc.git diff --git a/apps/silcd/command_reply.c b/apps/silcd/command_reply.c index b54126cf..a31588d6 100644 --- a/apps/silcd/command_reply.c +++ b/apps/silcd/command_reply.c @@ -236,6 +236,10 @@ silc_server_command_reply_whois_save(SilcServerCommandReplyContext cmd) client->data.status &= ~SILC_IDLIST_STATUS_RESOLVING; client->mode = mode; client->servername = servername[0] ? strdup(servername) : NULL; + + SILC_LOG_DEBUG(("stat.clients %d->%d", server->stat.clients, + server->stat.clients + 1)); + server->stat.clients++; } else { /* We have the client already, update the data */ @@ -660,6 +664,10 @@ silc_server_command_reply_identify_save(SilcServerCommandReplyContext cmd) client->data.status |= SILC_IDLIST_STATUS_REGISTERED; client->data.status |= SILC_IDLIST_STATUS_RESOLVED; client->data.status &= ~SILC_IDLIST_STATUS_RESOLVING; + + SILC_LOG_DEBUG(("stat.clients %d->%d", server->stat.clients, + server->stat.clients + 1)); + server->stat.clients++; } else { /* We have the client already, update the data */ @@ -1242,7 +1250,7 @@ SILC_SERVER_CMD_REPLY_FUNC(stats) SILC_STR_END); } - SILC_LOG_DEBUG(("stat.clients = %d\n", server->stat.clients)); + SILC_LOG_DEBUG(("stat.clients = %d", server->stat.clients)); out: SILC_SERVER_PENDING_EXEC(cmd, SILC_COMMAND_STATS);