summaryrefslogtreecommitdiffstats
path: root/src/lua_worker.c
Commit message (Collapse)AuthorAgeFilesLines
...
* 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.