diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2011-04-19 11:26:37 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2011-04-19 11:26:37 +0200 |
commit | d348558a51402d08310d95cfd6e8a2d6b9fce1b2 (patch) | |
tree | 265b52c8b09bf4ad5335a7e243f3d0121d7204d8 /runtime/rsconf.h | |
parent | f72bde2f701b1a1ff42273e8f9b07de47b480ce9 (diff) | |
download | rsyslog-d348558a51402d08310d95cfd6e8a2d6b9fce1b2.tar.gz rsyslog-d348558a51402d08310d95cfd6e8a2d6b9fce1b2.tar.bz2 rsyslog-d348558a51402d08310d95cfd6e8a2d6b9fce1b2.zip |
milestone: conf obj interface now utilzes rsconf_t
Diffstat (limited to 'runtime/rsconf.h')
-rw-r--r-- | runtime/rsconf.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/rsconf.h b/runtime/rsconf.h index 4a8c143f..e32e3d12 100644 --- a/runtime/rsconf.h +++ b/runtime/rsconf.h @@ -34,12 +34,18 @@ struct templates_s { struct template *lastStatic; /* last static element of the template list */ }; + +struct actions_s { + unsigned nbrActions; /* number of actions */ +}; + /* --- end configuration objects --- */ /* the rsconf object */ struct rsconf_s { BEGINobjInstance; /* Data to implement generic object - MUST be the first data element! */ templates_t templates; + actions_t actions; }; |