summaryrefslogtreecommitdiffstats
path: root/syslogd-types.h
diff options
context:
space:
mode:
Diffstat (limited to 'syslogd-types.h')
-rw-r--r--syslogd-types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/syslogd-types.h b/syslogd-types.h
index 2ae0964a..852b19ea 100644
--- a/syslogd-types.h
+++ b/syslogd-types.h
@@ -203,7 +203,8 @@ struct filed {
FIOP_NOP = 0, /* do not use - No Operation */
FIOP_CONTAINS = 1, /* contains string? */
FIOP_ISEQUAL = 2, /* is (exactly) equal? */
- FIOP_STARTSWITH = 3 /* starts with a string? */
+ FIOP_STARTSWITH = 3, /* starts with a string? */
+ FIOP_REGEX = 4 /* matches a regular expression? */
} operation;
rsCStrObj *pCSCompValue; /* value to "compare" against */
char isNegated; /* actually a boolean ;) */