summaryrefslogtreecommitdiffstats
path: root/src/plugins/custom/ipmark
Commit message (Collapse)AuthorAgeFilesLines
* Remove legacy.Vsevolod Stakhov2015-04-142-439/+0
|
* Refactor config API.Vsevolod Stakhov2014-04-301-5/+5
|
* Allow restriction of update commands for fuzzy storage.Vsevolod Stakhov2013-06-041-3/+3
| | | | | | | | | Now it is possible to specify ip or networks from which fuzzy updates or removes are possible. Rework sockets logic while I'm here. Create universal utility for parsing ipv4/mask strings.
* Another debian license fix.Vsevolod Stakhov2012-09-101-1/+1
| | | | | Add apache license for regexp that were delivered from SpamAssassin project. Fix debian/copyright for src/dns.c.
* Update copyright (required by debian).Vsevolod Stakhov2012-09-041-3/+3
|
* * Fix build under CentOS 5 with old glib 2.12Vsevolod Stakhov2011-07-291-3/+3
| | | | | * Fix build of rspamd with CMAKE_BINARY_DIR differs from CMAKE_SOURCE_DIR Rework include style.
* Fixes bugs found with clang-static analyser.Vsevolod Stakhov2010-10-111-1/+1
| | | | | Strictly follow c99 standart. Turn on pedantic c99 checks.
* * Fix strict aliasing while compiling with optimizationVsevolod Stakhov2010-05-311-3/+3
| | | | | * Fix tanhl detection for platforms that have not implementation of it * Remove several compile warnings
* * Add custom filter for making marks for new user:cebka@lenovo-laptop2010-02-262-4/+4
| | | | | | - each username is passed throught metaphone filter - then we make prefix tree based on english letters from metaphone - then we are searching for the longest common string and output result (how many times we got that string)
* * Add first custom filter for making marks for ip addresses and networkscebka@lenovo-laptop2010-02-252-0/+439
* Some additions to radix tree library: - allow tree traverse - add new insert methods (add and replace) - store keys in radix nodes (thought we can calculate key by bits, but I think that storing key is not too expensive) - values in a tree are now uintptr_t