aboutsummaryrefslogtreecommitdiffstats
path: root/src/lua/lua_http.c
Commit message (Collapse)AuthorAgeFilesLines
* Adopt to lua 5.2.Vsevolod Stakhov2013-06-081-1/+1
|
* Rework socket creation logic to support both ipv4 and ipv6 sockets.Vsevolod Stakhov2013-06-011-2/+2
|
* Use getaddrinfo when opening sockets.Vsevolod Stakhov2013-05-311-2/+2
|
* Update copyright (required by debian).Vsevolod Stakhov2012-09-041-1/+1
|
* * Rework thread pools locking logic to avoid global lua mutex usage.Vsevolod Stakhov2012-08-221-18/+1
| | | | | | Fixed several memory leaks with modern glib. Fixed memory leak in dkim code. Fixed a problem with static global variables in shared libraries.
* Fix deadlock in lua HTTP bindings.Vsevolod Stakhov2012-08-221-4/+5
|
* * Add DNS resolver lua bindings.Vsevolod Stakhov2012-08-131-45/+250
| | | | | | Make lua http library working without task object. Fix a problem with resolver in lua_worker. Added some utility functions to lua api.
* Add quarks to events to determine source of event inside rspamd.Vsevolod Stakhov2012-02-131-1/+1
| | | | Another try to fix threading.
* * Finally get rid of stupid savepoints system and migrate to async events ↵Vsevolod Stakhov2011-12-141-14/+0
| | | | | | logic completely Fix lua redis library.
* * Use event_base thread safe API to allow parallelism based on threadsVsevolod Stakhov2011-10-261-2/+2
|
* * Fix build under CentOS 5 with old glib 2.12Vsevolod Stakhov2011-07-291-2/+2
| | | | | * Fix build of rspamd with CMAKE_BINARY_DIR differs from CMAKE_SOURCE_DIR Rework include style.
* Add workaround for clang under linux.Vsevolod Stakhov2011-07-211-1/+1
| | | | Fix problems found by static analyzing.
* Fix connecting to xmlrpc server.Vsevolod Stakhov2011-06-101-5/+2
|
* * Add LRU caching structureVsevolod Stakhov2011-06-101-5/+18
| | | | | | | * Add SPF records cache * Add ability to parse doubles to xmlrpc Several fixes to dns interface. Trie plugin now checks urls as well.
* * Add lua http support that makes it easy to send GET and POST request to ↵Vsevolod Stakhov2011-06-091-0/+443
HTTP servers from lua code