diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-12-17 17:10:21 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-12-17 17:10:21 +0000 |
commit | c63bee1078c6b8370aadaa73f0bb5f2333fd78cf (patch) | |
tree | 06e7d5c41ab6b1fc3792f0dfc3cd60cb41b0d227 /src/libutil/shingles.c | |
parent | 30e37db22654d400f2ac2f9d89e89678a7782131 (diff) | |
download | rspamd-c63bee1078c6b8370aadaa73f0bb5f2333fd78cf.tar.gz rspamd-c63bee1078c6b8370aadaa73f0bb5f2333fd78cf.zip |
Add comparision function for shingles.
Diffstat (limited to 'src/libutil/shingles.c')
-rw-r--r-- | src/libutil/shingles.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/libutil/shingles.c b/src/libutil/shingles.c index 2307a318c..653fa5356 100644 --- a/src/libutil/shingles.c +++ b/src/libutil/shingles.c @@ -135,3 +135,18 @@ rspamd_shingles_default_filter (guint64 *input, gsize count, return minimal; } + + +gdouble rspamd_shingles_compare (const struct rspamd_shingle *a, + const struct rspamd_shingle *b) +{ + gint i, common = 0; + + for (i = 0; i < RSPAMD_SHINGLE_SIZE; i ++) { + if (a->hashes[i] == b->hashes[i]) { + common ++; + } + } + + return (gdouble)common / 84.0; +} |