From: Vsevolod Stakhov Date: Mon, 13 Jul 2020 15:01:38 +0000 (+0100) Subject: [Minor] Fix fuzzy sessions counter X-Git-Tag: 2.6~243 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=905d77990482bca21b49163873dbd84fe99b6b70;p=rspamd.git [Minor] Fix fuzzy sessions counter --- diff --git a/src/fuzzy_storage.c b/src/fuzzy_storage.c index f9c669452..b8e3d49c2 100644 --- a/src/fuzzy_storage.c +++ b/src/fuzzy_storage.c @@ -1547,6 +1547,7 @@ accept_fuzzy_socket (EV_P_ ev_io *w, int revents) session->time = (guint64) time (NULL); session->addr = rspamd_inet_address_from_sa (MSG_FIELD(msg[i], msg_name), MSG_FIELD(msg[i], msg_namelen)); + worker->nconns++; /* Each message can have its length in case of recvmmsg */ #ifdef HAVE_RECVMMSG @@ -1556,7 +1557,6 @@ accept_fuzzy_socket (EV_P_ ev_io *w, int revents) if (rspamd_fuzzy_cmd_from_wire (iovs[i].iov_base, msg_len, session)) { /* Check shingles count sanity */ - worker->nconns++; rspamd_fuzzy_process_command (session); } else {