commit 905d779: [Minor] Fix fuzzy sessions counter
Vsevolod Stakhov
vsevolod at highsecure.ru
Mon Jul 13 15:07:06 UTC 2020
Author: Vsevolod Stakhov
Date: 2020-07-13 16:01:38 +0100
URL: https://github.com/rspamd/rspamd/commit/905d77990482bca21b49163873dbd84fe99b6b70 (HEAD -> master)
[Minor] Fix fuzzy sessions counter
---
src/fuzzy_storage.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 {
More information about the Commits
mailing list