summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | added some user doc on RainerScriptRainer Gerhards2008-02-264-31/+99
| |
* | applied patch from varmojfekoj to fix an issue with compatibility mode andRainer Gerhards2008-02-262-2/+11
| | | | | | | | default module directories (many thanks!)
* | applied Michael Biebl's fix for building rsyslog core without gssapiRainer Gerhards2008-02-265-9/+18
| | | | | | | | support
* | fixed segfault when pure string values were tried to be addedRainer Gerhards2008-02-252-12/+14
| |
* | added string concatenation operator & to RainerScriptRainer Gerhards2008-02-259-4/+44
| |
* | improved class diagramRainer Gerhards2008-02-251-0/+0
| |
* | - added sysvar classRainer Gerhards2008-02-257-6/+270
| | | | | | | | - added PUSHSYSVAR operation to vm
* | - added PUSHMSGVAR operationRainer Gerhards2008-02-259-22/+213
| | | | | | | | - included expression support in filter module (and it works ;))
* | - added some temporary testing aids to conf.c, so that we can debugRainer Gerhards2008-02-257-13/+104
| | | | | | | | | | | | expression support as it is implemented - fixed a couple of bugs in expression system - added more operations to virtual machine - now works well with constants
* | implemented majority of comparison operationsRainer Gerhards2008-02-253-25/+138
| |
* | bumped version numberRainer Gerhards2008-02-252-2/+4
| |
* | preparing for 3.11.5v3-11-5Rainer Gerhards2008-02-252-5/+5
| |
* | implemented data type conversionRainer Gerhards2008-02-256-44/+131
| |
* | - added some thoughts on RainerScriptRainer Gerhards2008-02-248-35/+170
| | | | | | | | - worked a bit on conversion functions
* | worked a bit on var_t data type conversionRainer Gerhards2008-02-223-17/+78
| |
* | simplified var object, now only supports strings and numbers as a singleRainer Gerhards2008-02-229-104/+107
| | | | | | | | type
* | worked a bit on type conversion (specified the interface)Rainer Gerhards2008-02-223-0/+85
| |
* | begun implementing rsyslog virtual machine (vm class)Rainer Gerhards2008-02-225-1/+285
| |
* | completed initial vmstk implementationRainer Gerhards2008-02-223-1/+23
| |
* | added some doc for imgssapi and imtcp input modulesRainer Gerhards2008-02-227-7/+118
| |
* | updated compatibility notes docRainer Gerhards2008-02-222-23/+13
| |
* | corrected config doc - IETF no longer intends to add facilitiesRainer Gerhards2008-02-221-22/+14
| |
* | added some information on old-style config to ABNF (probably useful inRainer Gerhards2008-02-221-1/+1
| | | | | | | | getting us to a new config format)
* | fixed bug in duplicate module load detectionRainer Gerhards2008-02-221-3/+7
| |
* | removed no longer needed codeRainer Gerhards2008-02-221-8/+0
| |
* | applied patch by varmojfekoj to allow gssapi functionality to be build as aRainer Gerhards2008-02-227-1024/+1176
| | | | | | | | | | | | separate plugin (so that gssapi and plain tcp functionality can be individually distributed). Also inclulded some other enhancements, most importantly initial compatibility mode system
* | integrated patch from Peter Vrabec to change the build process to produceRainer Gerhards2008-02-222-3/+14
| | | | | | | | | | imtcp.so and imgssapi.so from imtcp.c (in support of new gassapi input module) - many thanks, Peter!
* | begin to add ABNF for config file as wholeRainer Gerhards2008-02-221-1/+1
| |
* | changed version number so that we can release a version specific to gss-apiRainer Gerhards2008-02-221-1/+1
| | | | | | | | patch
* | defined some entry points in vmstkRainer Gerhards2008-02-212-0/+34
| |
* | added empty vmstk classRainer Gerhards2008-02-213-0/+151
| |
* | - modified parser and tokenizer to support slight ABNF modifications fromRainer Gerhards2008-02-217-30/+86
| | | | | | | | | | | | | | yesterday - change in ABNF was wrong - made a slightly different change - fixed bugs in tokenizer - expression compiler finished (except bugs, of course ;))
* | modified ABNF to meet practical needsRainer Gerhards2008-02-211-4/+2
| |
* | changed tokenizer to utilize var class instead of scalar typesRainer Gerhards2008-02-215-30/+50
| |
* | some more interface changesRainer Gerhards2008-02-2112-110/+222
| |
* | first steps in implementing object interfaces (stage work for later dynamicRainer Gerhards2008-02-2113-67/+215
| | | | | | | | class loading)
* | first steps in implementing object interfaces (stage work for later dynamicRainer Gerhards2008-02-215-18/+123
| | | | | | | | class loading)
* | made man page even more beginners-safe ;)Rainer Gerhards2008-02-211-5/+5
| |
* | bumped version numberRainer Gerhards2008-02-212-2/+3
| |
* | cleanup for 3.11.4v3-11-4Rainer Gerhards2008-02-219-319/+349
| |
* | fixed some doc errors - thanks to Michael Biebl for pointing them outRainer Gerhards2008-02-212-35/+31
| |
* | changed rsCStrObj name to cstr_t, which is more inline with the rest ofRainer Gerhards2008-02-2122-248/+247
| | | | | | | | rsyslog (now) and also much easier to type
* | begun expr compile process, first steps doneRainer Gerhards2008-02-208-24/+212
| |
* | more precisely described offered professional servicesRainer Gerhards2008-02-201-3/+20
| |
* | used new classes in expr.cRainer Gerhards2008-02-209-12/+89
| |
* | forgotten header added - thanks to Michael Biebel for alerting meRainer Gerhards2008-02-201-0/+49
| |
* | created initial vmprg classRainer Gerhards2008-02-205-0/+163
| |
* | - added "contains" and "startwith" comparison operationsRainer Gerhards2008-02-204-4/+36
| | | | | | | | - defined initial set of opcodes
* | added vmop class (stage for expression execution)Rainer Gerhards2008-02-206-5/+160
| |
* | bugfix: message object was not properly synchronized when the main queueRainer Gerhards2008-02-202-0/+10
| | | | | | | | had a single thread and non-direct action queues were used