summaryrefslogtreecommitdiffstats
path: root/obj-types.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-01-14 13:54:22 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-01-14 13:54:22 +0000
commita53b019a4e9dea315ac750981f0f690a81b8f33f (patch)
treef413d5ad7ac86c11cecd95c9ffafadbd1867cbd5 /obj-types.h
parent6a7a3a2702679d111befe85cb7340e7fb04a66eb (diff)
downloadrsyslog-a53b019a4e9dea315ac750981f0f690a81b8f33f.tar.gz
rsyslog-a53b019a4e9dea315ac750981f0f690a81b8f33f.tar.xz
rsyslog-a53b019a4e9dea315ac750981f0f690a81b8f33f.zip
- implemented config file handlers for
$MainMsgQueueHighWaterMark $MainMsgQueueLowWaterMark $MainMsgQueueDiscardMark $MainMsgQueueDiscardSeverity but did NOT yet implement the functionality behind these directives!
Diffstat (limited to 'obj-types.h')
-rw-r--r--obj-types.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/obj-types.h b/obj-types.h
index cd818228..350bc95b 100644
--- a/obj-types.h
+++ b/obj-types.h
@@ -71,9 +71,10 @@ typedef enum { /* IDs of base methods supported by all objects - used for jump t
objMethod_DESERIALIZE = 3,
objMethod_SETPROPERTY = 4,
objMethod_CONSTRUCTION_FINALIZER = 5,
- objMethod_DEBUGPRINT = 6
+ objMethod_GETSEVERITY = 6,
+ objMethod_DEBUGPRINT = 7
} objMethod_t;
-#define OBJ_NUM_METHODS 7 /* must be updated to contain the max number of methods supported */
+#define OBJ_NUM_METHODS 8 /* must be updated to contain the max number of methods supported */
typedef struct objInfo_s {
objID_t objID;