summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add common principles of rspamd rcl configuration.Vsevolod Stakhov2013-08-232-2/+127
|
* Add flags to rcl parser creation.Vsevolod Stakhov2013-08-233-4/+16
| | | | | Allow RSPAMD_CL_FLAG_KEY_LOWERCASE flag to force all keys in rcl objects to be lowercased which is useful for parsing.
* Add the tolower variant of strlcpy function.Vsevolod Stakhov2013-08-232-1/+33
|
* Add test for signature checking in rcl.Vsevolod Stakhov2013-08-223-1/+13
|
* Fix signatures checking.Vsevolod Stakhov2013-08-221-1/+13
|
* Fix signing procedure.Vsevolod Stakhov2013-08-221-8/+19
|
* Add ability to sign configs using rspamd.Vsevolod Stakhov2013-08-225-0/+266
|
* Add skeleton for rcl configuration.Vsevolod Stakhov2013-08-223-0/+71
|
* Fix whitespace parsing for rcl arrays.Vsevolod Stakhov2013-08-212-13/+19
|
* Fix some issues with comments in rcl.Vsevolod Stakhov2013-08-212-21/+49
|
* Fix several problems in rcl parser.Vsevolod Stakhov2013-08-212-24/+35
|
* Improve test suite by using standard glib test options.Vsevolod Stakhov2013-08-213-19/+10
|
* Implement signatures checking.Vsevolod Stakhov2013-08-211-31/+111
|
* Refactor fetching functions slightly.Vsevolod Stakhov2013-08-212-49/+93
|
* Implement include macro for rcl.Vsevolod Stakhov2013-08-203-1/+198
|
* Add pubkey loading method for rcl parser.Vsevolod Stakhov2013-08-194-29/+117
|
* Link libcurl/fetch to rcl directly.Vsevolod Stakhov2013-08-193-7/+14
|
* Add detecting of libfetch/libcurl for rcl.Vsevolod Stakhov2013-08-193-0/+44
|
* Fix some warnings found by coverity scan.Vsevolod Stakhov2013-08-1610-10/+23
|
* Add macro value parsing code.Vsevolod Stakhov2013-08-161-0/+92
|
* Some cleanups.Vsevolod Stakhov2013-08-141-0/+19
|
* Rework the parser state machine, add macros state.Vsevolod Stakhov2013-08-143-186/+274
|
* Fixes to rcl parser found by tests.Vsevolod Stakhov2013-08-132-10/+23
|
* Improve testing logic.Vsevolod Stakhov2013-08-131-1/+29
|
* Add compacted json and config rcl emitters.Vsevolod Stakhov2013-08-132-38/+216
|
* Fix indentation in json output.Vsevolod Stakhov2013-08-121-16/+58
|
* Fix rcl test suite and parser.Vsevolod Stakhov2013-08-123-17/+76
|
* Add json emitter of an rcl object.Vsevolod Stakhov2013-08-121-0/+191
|
* Fix some rcl parser errors found by test.Vsevolod Stakhov2013-08-092-29/+33
|
* Add a test suite for rcl.Vsevolod Stakhov2013-08-096-15/+83
|
* More parser utilities.Vsevolod Stakhov2013-08-091-12/+229
|
* Add numbers parsing.Vsevolod Stakhov2013-08-083-22/+331
|
* Insert build status.Vsevolod Stakhov2013-08-081-0/+2
|
* Honor CMAKE_INSTALL_PREFIX.Vsevolod Stakhov2013-08-081-4/+4
|
* Another fix for id broken logic.Vsevolod Stakhov2013-08-082-13/+4
|
* Remove git id support as it is bad actually.Vsevolod Stakhov2013-08-081-9/+0
|
* Update travis rules.Vsevolod Stakhov2013-08-081-2/+7
|
* Forgot to add CMakeLists.txtVsevolod Stakhov2013-08-082-0/+19
|
* Servicing changes.Vsevolod Stakhov2013-08-082-14/+22
|
* Fixes #45 issue by the proper parsing of a unix socket address.Vsevolod Stakhov2013-08-081-0/+1
|
* Allow keys and values be separated by newlines.Vsevolod Stakhov2013-08-071-1/+1
|
* Fix comments after a key.Vsevolod Stakhov2013-08-071-0/+1
|
* Improve keys parsing.Vsevolod Stakhov2013-08-074-91/+141
|
* Implement strings parser.Vsevolod Stakhov2013-08-063-99/+362
|
* Start rcl parser implementation.Vsevolod Stakhov2013-08-055-1/+1109
|
* Add time type for a variable.Vsevolod Stakhov2013-08-051-10/+12
|
* Add skeleton files for RCL library.Vsevolod Stakhov2013-08-046-2/+168
|
* Use glib slab allocator for hash tables.Vsevolod Stakhov2013-08-041-0/+3
|
* Use murumur for uthash if possible.Vsevolod Stakhov2013-08-041-0/+6
|
* The preliminary API of rspamd configuration language.Vsevolod Stakhov2013-08-043-1/+1191
| | | | | Include UTHash for faster and more convenient hash functions than g_hash_table is. Implement the basic API for RCL parser.