From 545346e697fe930b8b7b9bd0ede47890b26a4832 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Wed, 5 Mar 2008 10:30:06 +0000 Subject: - changed modules.c calling conventions to be interface-based - moved module loader from conf.c to module.c, where it belongs - made the necessary plumbing to auto-load library modules - upgraded debug system to include iRet in function exit message - changed module interface so that instances need only to be supported by output plugins (if we actually need them for input plugins, we can always add it again...) - milestone: first implementation of library modules (but do not get unloaded on exit/hup so far) --- tcps_sess.c | 1 + 1 file changed, 1 insertion(+) (limited to 'tcps_sess.c') diff --git a/tcps_sess.c b/tcps_sess.c index c8ee4d67..95f287d4 100644 --- a/tcps_sess.c +++ b/tcps_sess.c @@ -429,6 +429,7 @@ ENDobjQueryInterface(tcps_sess) */ //BEGINObjClassInit(tcps_sess, 1, OBJ_IS_LOADABLE_MODULE) /* class, version - CHANGE class also in END MACRO! */ BEGINObjClassInit(tcps_sess, 1, OBJ_IS_CORE_MODULE) /* class, version - CHANGE class also in END MACRO! */ +RUNLOG_STR("initializing tcps_sess class"); /* request objects we use */ //CHKiRet(objUse(expr, CORE_COMPONENT)); -- cgit