diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-10-01 12:00:52 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-10-01 12:00:52 +0200 |
commit | 11c203c6732ebe939571919ee85f414f0457a017 (patch) | |
tree | fdaf12079f9741c5e1bba9ace7f93c614e259b3b /grammar/rainerscript.h | |
parent | 62c19971742bb0a719f6ffe4b5f00dcd58d120bb (diff) | |
download | rsyslog-11c203c6732ebe939571919ee85f414f0457a017.tar.gz rsyslog-11c203c6732ebe939571919ee85f414f0457a017.tar.bz2 rsyslog-11c203c6732ebe939571919ee85f414f0457a017.zip |
implement imtcp "permittedPeers" module-global parameter
Diffstat (limited to 'grammar/rainerscript.h')
-rw-r--r-- | grammar/rainerscript.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/grammar/rainerscript.h b/grammar/rainerscript.h index 41d30d83..7d4961ab 100644 --- a/grammar/rainerscript.h +++ b/grammar/rainerscript.h @@ -327,8 +327,9 @@ struct cnfstmt * cnfstmtNewUnset(char *var); void cnfstmtDestruct(struct cnfstmt *root); void cnfstmtOptimize(struct cnfstmt *root); struct cnfarray* cnfarrayNew(es_str_t *val); -//struct cnfarray* cnfarrayDup(struct cnfarray *old); +struct cnfarray* cnfarrayDup(struct cnfarray *old); struct cnfarray* cnfarrayAdd(struct cnfarray *ar, es_str_t *val); +void cnfarrayContentDestruct(struct cnfarray *ar); char* getFIOPName(unsigned iFIOP); rsRetVal initRainerscript(void); void unescapeStr(uchar *s, int len); |