diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2011-07-07 08:22:40 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2011-07-07 08:22:40 +0200 |
commit | 5710b413963d2fde9d062127ed72672b8a58a07e (patch) | |
tree | 35cd364e62273da3a239f1c72f1d50d4e69ce21b /runtime/rule.h | |
parent | 30f2b5b094d282af6f601aa4e8fa88c1baf187f4 (diff) | |
download | rsyslog-5710b413963d2fde9d062127ed72672b8a58a07e.tar.gz rsyslog-5710b413963d2fde9d062127ed72672b8a58a07e.tar.xz rsyslog-5710b413963d2fde9d062127ed72672b8a58a07e.zip |
milestone/[PARTWORK]: integrted script filter, but var access is missing
Diffstat (limited to 'runtime/rule.h')
-rw-r--r-- | runtime/rule.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/rule.h b/runtime/rule.h index 3b34e11a..f346c764 100644 --- a/runtime/rule.h +++ b/runtime/rule.h @@ -2,7 +2,7 @@ * * This implements rules within rsyslog. * - * Copyright 2009 Rainer Gerhards and Adiscon GmbH. + * Copyright 2009-2011 Rainer Gerhards and Adiscon GmbH. * * This file is part of the rsyslog runtime library. * @@ -28,7 +28,8 @@ #include "libestr.h" #include "linkedlist.h" #include "regexp.h" -#include "expr.h" +#include "expr.h" // TODO: remove #if 0 +#include "rainerscript.h" /* the rule object */ struct rule_s { @@ -52,6 +53,7 @@ struct rule_s { propid_t propID; /* ID of the requested property */ es_str_t *propName; /* name of property for CEE-based filters */ } prop; + struct cnfexpr *expr; /* expression object */ expr_t *f_expr; /* expression object */ } f_filterData; |