summaryrefslogtreecommitdiff
path: root/modules.h
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2008-03-29 12:14:46 +0100
committerMichael Biebl <biebl@debian.org>2008-03-29 12:14:46 +0100
commite1bfc41f9a8e6c7ef051686210c0f263bf512372 (patch)
tree403612780ae40da9d69f785bd09d177c69fafca6 /modules.h
parentde624a45c50b87eb153e78cd84cf0eae8dbeddfa (diff)
downloadrsyslog-e1bfc41f9a8e6c7ef051686210c0f263bf512372.tar.gz
Imported Debian patch 1.20.1-1debian/1.20.1-1
Diffstat (limited to 'modules.h')
-rw-r--r--modules.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules.h b/modules.h
index 3f008a6..4782d31 100644
--- a/modules.h
+++ b/modules.h
@@ -62,7 +62,8 @@ typedef struct moduleInfo {
rsRetVal (*needUDPSocket)(void*);/* called when fd is writeable after select() */
rsRetVal (*dbgPrintInstInfo)(void*);/* called before termination or module unload */
rsRetVal (*tryResume)(void*);/* called to see if module actin can be resumed now */
- rsRetVal (*modExit)(); /* called before termination or module unload */
+ rsRetVal (*modExit)(void); /* called before termination or module unload */
+ rsRetVal (*modGetID)(void **); /* get its unique ID from module */
/* below: parse a configuration line - return if processed
* or not. If not, must be parsed to next module.
*/