From 7ea63db2f9d6b375dc95696e47357d73927f2d3d Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Fri, 26 Jun 2009 15:31:40 +0200 Subject: optimization: propert names are now internally identified by integers --- runtime/rule.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/rule.h') diff --git a/runtime/rule.h b/runtime/rule.h index 38b11c63..99ac44e7 100644 --- a/runtime/rule.h +++ b/runtime/rule.h @@ -44,11 +44,11 @@ struct rule_s { union { u_char f_pmask[LOG_NFACILITIES+1]; /* priority mask */ struct { - cstr_t *pCSPropName; fiop_t operation; regex_t *regex_cache; /* cache for compiled REs, if such are used */ cstr_t *pCSCompValue; /* value to "compare" against */ - char isNegated; /* actually a boolean ;) */ + bool isNegated; + propid_t propID; /* ID of the requested property */ } prop; expr_t *f_expr; /* expression object */ } f_filterData; -- cgit