aboutsummaryrefslogtreecommitdiffstats
path: root/src/lua_worker.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove global rspamd_main.Vsevolod Stakhov2015-10-091-2/+2
|
* Reorganize includes to reduce namespace pollution.Vsevolod Stakhov2015-10-081-0/+1
|
* Rename main.h and main.c to `rspamd.X`Vsevolod Stakhov2015-09-221-1/+1
|
* Avoid global rspamd_main usage.Vsevolod Stakhov2015-08-061-1/+1
|
* Hide workers and modules definitions.Vsevolod Stakhov2015-08-061-0/+1
|
* Push inet addr instead of the string for lua worker.Vsevolod Stakhov2015-04-221-1/+1
|
* Fix lua worker.Vsevolod Stakhov2015-03-121-4/+6
|
* Refactor function names.Vsevolod Stakhov2014-11-291-2/+2
|
* Rework lua function names to avoid ambiguity.Vsevolod Stakhov2014-08-171-8/+8
|
* Unify style without sorting headers.Vsevolod Stakhov2014-07-231-54/+65
|
* Revert "Unify code style."Vsevolod Stakhov2014-07-231-70/+59
| | | | This reverts commit e0483657ff6cf1adc828ccce457814d61fe90a0d.
* Unify code style.Vsevolod Stakhov2014-07-231-59/+70
|
* Adopt for the new lua ucl API.Vsevolod Stakhov2014-07-211-1/+1
|
* Refactor config API.Vsevolod Stakhov2014-04-301-5/+5
|
* Use unified signal handlers.Vsevolod Stakhov2014-04-221-77/+1
|
* Finish conversion to new inet addr structure.Vsevolod Stakhov2014-04-211-38/+8
|
* Deprecate xml config utilities finally.Vsevolod Stakhov2014-04-191-1/+0
|
* Adopt new libucl.Vsevolod Stakhov2014-04-191-1/+1
|
* Adopt DNS logging.Vsevolod Stakhov2014-02-201-1/+1
|
* Unbreak lua_worker with ucl.Vsevolod Stakhov2013-11-091-12/+17
|
* Convert webui worker.Vsevolod Stakhov2013-09-301-23/+7
|
* Allow listening on multiply addresses.Vsevolod Stakhov2013-07-201-16/+4
| | | | | | | Now rspamd can listen on multiply ipv4/ipv6 addresses. Removed legacy workers (lmtp, kvstorage) as they are never used in production. Try to unify workers initialization.
* Adopt to lua 5.2.Vsevolod Stakhov2013-06-081-1/+1
|
* Fix some warnings that actually are dangerous.Vsevolod Stakhov2013-06-031-0/+14
|
* * Use murmur hash for all hashes as it is more efficient and provides more ↵Vsevolod Stakhov2012-10-081-1/+1
| | | | | | uniform distribution as glib's default one. * Fix probability renormalization while using advanced classification.
* Avoid global variables in map logic.Vsevolod Stakhov2012-09-191-1/+1
| | | | * Add support of simple maps like '/path/to/file' as it seems to be more comfortable than 'file:///...'
* * Add DNS resolver lua bindings.Vsevolod Stakhov2012-08-131-2/+6
| | | | | | Make lua http library working without task object. Fix a problem with resolver in lua_worker. Added some utility functions to lua api.
* * Add lua worker type and lua worker bindings.Vsevolod Stakhov2012-07-261-0/+516
* Add lua utility library for basic utils. * Fixes lua_buffer code. Fix lua loading error. Added some other lua utility functions.