diff options
Diffstat (limited to 'grammar/rainerscript.h')
-rw-r--r-- | grammar/rainerscript.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/grammar/rainerscript.h b/grammar/rainerscript.h index a6693ef0..1b94ba21 100644 --- a/grammar/rainerscript.h +++ b/grammar/rainerscript.h @@ -208,7 +208,8 @@ enum cnffuncid { CNFFUNC_CSTR, CNFFUNC_CNUM, CNFFUNC_RE_MATCH, - CNFFUNC_FIELD + CNFFUNC_FIELD, + CNFFUNC_PRIFILT }; struct cnffunc { @@ -259,6 +260,10 @@ struct cnfparamvals { /* the values we obtained for param descr. */ unsigned char bUsed; }; +struct funcData_prifilt { + uchar pmask[LOG_NFACILITIES+1]; /* priority mask */ +}; + int cnfParseBuffer(char *buf, unsigned lenBuf); void readConfFile(FILE *fp, es_str_t **str); |