aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix possible illegal memory access.Vsevolod Stakhov2015-05-211-1/+1
|
* Merge pull request #287 from dottedmag/masterVsevolod Stakhov2015-05-212-1/+9
|\ | | | | Debian changes for 0.9.4
| * Update changelogMikhail Gusarov2015-05-201-0/+8
| |
| * Restrict luajit B-D to architectures it is availableMikhail Gusarov2015-05-201-1/+1
| |
* | Switch off legacy tokenization by default.Vsevolod Stakhov2015-05-211-1/+1
| |
* | Do not stem exceptions.Vsevolod Stakhov2015-05-211-15/+17
| |
* | Use not common name for tokenization exceptions.Vsevolod Stakhov2015-05-212-9/+9
| |
* | Fix memory issues with tokens normalization.Vsevolod Stakhov2015-05-211-0/+6
| |
* | Add more unit tests for tokenization.Vsevolod Stakhov2015-05-211-5/+90
| |
* | More fixes to tokenization.Vsevolod Stakhov2015-05-211-4/+7
| |
* | Reverse list of exceptions.Vsevolod Stakhov2015-05-211-0/+4
|/
* Add tests for tokenizer bug.Vsevolod Stakhov2015-05-202-1/+4
|
* Fix critical bug in tokenization logic.Vsevolod Stakhov2015-05-201-1/+1
|
* Add a simple unit test for tokenizer.Vsevolod Stakhov2015-05-201-0/+23
|
* Add lua bindings to tokenizer.Vsevolod Stakhov2015-05-201-0/+96
|
* Use caseless hash and equal functions for request headers.Vsevolod Stakhov2015-05-203-4/+27
|
* Add API to get/set request headers from lua.Vsevolod Stakhov2015-05-201-0/+96
|
* Save all HTTP headers as request headers.Vsevolod Stakhov2015-05-201-36/+37
|
* Add unit test for base64 encoding.Vsevolod Stakhov2015-05-201-0/+71
|
* Fix issues in base64 encoding.Vsevolod Stakhov2015-05-201-86/+64
|
* Add lua bindings for base64.Vsevolod Stakhov2015-05-201-0/+56
|
* Allow owning lua_text.Vsevolod Stakhov2015-05-204-1/+21
|
* Add base64 encoding routine.Vsevolod Stakhov2015-05-202-0/+176
|
* Add documentation for lua_tcp.Vsevolod Stakhov2015-05-192-2/+51
|
* Release 0.9.30.9.3Vsevolod Stakhov2015-05-194-3/+10
| | | | | | | * Revert incorrect regexp change that broke the default rules * Fix lua_tcp module Signed-off-by: Vsevolod Stakhov <vsevolod@highsecure.ru>
* Fix issues with lua_tcp.Vsevolod Stakhov2015-05-191-5/+4
|
* Revert automatic capture in regexps as it breaks things.Vsevolod Stakhov2015-05-191-1/+0
|
* Release 0.9.20.9.2Vsevolod Stakhov2015-05-193-2/+15
| | | | | | | | | | | | | * Fix error on spawning unique workers. * Add preliminary version of generic LUA TCP requests API. * Use lua 5.1 if luajit is not available (Arm64, PowerPC, s390x etc) * Fix fuzzy mime strings with only type. * Improve thunderbird sanity checks. * Fix critical bug on matching regular expressions. * Make hiredis optional dependency. * Fix multiple bugs in daemon reloading Signed-off-by: Vsevolod Stakhov <vsevolod@highsecure.ru>
* Fix reload.Vsevolod Stakhov2015-05-191-30/+27
|
* Fix reloading in logger.Vsevolod Stakhov2015-05-191-4/+3
|
* One more try to fix memset.Vsevolod Stakhov2015-05-194-7/+20
|
* Fix reloading of C plugins.Vsevolod Stakhov2015-05-193-3/+7
|
* Fix reloading of modules.Vsevolod Stakhov2015-05-191-9/+11
|
* Do not try dereference NULL pointer.Vsevolod Stakhov2015-05-191-2/+4
|
* Merge pull request #284 from dottedmag/masterVsevolod Stakhov2015-05-193-5/+10
|\ | | | | Updates for 0.9.2 Debian release
| * Update changelogMikhail Gusarov2015-05-181-0/+7
| |
| * Use lua 5.1 if luajit is not available (Arm64, PowerPC, s390x etc)Mikhail Gusarov2015-05-181-1/+1
| |
| * Require fixed version of libhiredis to drop workaroundMikhail Gusarov2015-05-182-3/+1
| |
| * Update changelogMikhail Gusarov2015-05-181-2/+2
|/
* Add method to detect the full size of message.Vsevolod Stakhov2015-05-191-0/+23
|
* Fallback to plain lua if luajit has not been found.Vsevolod Stakhov2015-05-191-3/+31
|
* Make hiredis optional dependency.Vsevolod Stakhov2015-05-194-9/+33
|
* Fix critical bug on matching regular expressions.Vsevolod Stakhov2015-05-191-1/+2
| | | | | Issue: #186 Reported by: @moisseev
* Improve thunderbird sanity checks.Vsevolod Stakhov2015-05-191-1/+1
| | | | Submitted by: corvax
* Fix fuzzy mime strings with only type.Vsevolod Stakhov2015-05-191-0/+1
| | | | | Issue: #283 Reported by: @moisseev
* Implement IO in lua tcp.Vsevolod Stakhov2015-05-181-0/+161
|
* Add helper to use GString in pool destructors.Vsevolod Stakhov2015-05-182-0/+13
|
* Add preliminary version of generic LUA TCP requests.Vsevolod Stakhov2015-05-184-1/+407
|
* Fix error on spawning unique workers.Vsevolod Stakhov2015-05-181-4/+2
| | | | | Issue: #282 Reported by: @moisseev
* Release 0.9.1.0.9.1Vsevolod Stakhov2015-05-174-3/+16
| | | | | | | | | | | | | * Restore utf8 validation for regular expressions to avoid crashes * Fix symbols displaying in the interface * Add symbol groups to the interface * Fix maps ID parsing in the controller * Add multimap and regexp modules documentation * Backport fixes from libucl * Fix debian package (by @dottedmag) * Rework XXH32 invocations Signed-off-by: Vsevolod Stakhov <vsevolod@highsecure.ru>