summaryrefslogtreecommitdiffstats
path: root/grammar/rainerscript.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2013-07-19 13:11:26 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2013-07-19 13:11:26 +0200
commite82d4c8f3e8e3525245fecd946e84548a8610b24 (patch)
treebd0bba141fba64e1ef21fbf606aa12d03af745fa /grammar/rainerscript.h
parentd486a25f18e0d74ca315aec341cddf0df4060f05 (diff)
downloadrsyslog-e82d4c8f3e8e3525245fecd946e84548a8610b24.tar.gz
rsyslog-e82d4c8f3e8e3525245fecd946e84548a8610b24.tar.bz2
rsyslog-e82d4c8f3e8e3525245fecd946e84548a8610b24.zip
main_queue() config object added
doc still missing
Diffstat (limited to 'grammar/rainerscript.h')
-rw-r--r--grammar/rainerscript.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/grammar/rainerscript.h b/grammar/rainerscript.h
index d00cc4c3..3e59fc60 100644
--- a/grammar/rainerscript.h
+++ b/grammar/rainerscript.h
@@ -24,6 +24,7 @@ enum cnfobjType {
CNFOBJ_TPL,
CNFOBJ_PROPERTY,
CNFOBJ_CONSTANT,
+ CNFOBJ_MAINQ,
CNFOBJ_INVALID = 0
};
@@ -55,6 +56,9 @@ cnfobjType2str(enum cnfobjType ot)
case CNFOBJ_CONSTANT:
return "constant";
break;
+ case CNFOBJ_MAINQ:
+ return "main_queue";
+ break;
default:return "error: invalid cnfobjType";
}
}