update comments in serv_test.c
[citadel.git] / citadel / modules / test / serv_test.c
index af49e8d322e6fbf0d0711fb38a4f3ad196253882..999b85fdbce58d0222fc3700cf5e58bb958a0ca5 100644 (file)
@@ -1,8 +1,16 @@
 /*
- * $Id$
+ * This is an empty skeleton of a Citadel server module, included to demonstrate
+ * how to add a new module to the system and how to activate it in the server.
+ * 
+ * Copyright (c) 1998-2012 by the citadel.org team
  *
- * A skeleton module to test the dynamic loader.
+ * This program is open source software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 3.
  *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
  */
 
 #include "sysdep.h"
 #include <limits.h>
 #include "ctdl_module.h"
 
-extern struct CitContext *ContextList;
 
 void CleanupTest(void) {
-       lprintf(CTDL_DEBUG, "--- test of adding an unload hook --- \n");
+       syslog(LOG_DEBUG, "--- test of adding an unload hook --- \n");
        }
 
 void NewRoomTest(void) {
-       lprintf(CTDL_DEBUG, "--- test module was told we're now in a new room ---\n");
+       syslog(LOG_DEBUG, "--- test module was told we're now in a new room ---\n");
        }
 
 void SessionStartTest(void) {
-       lprintf(CTDL_DEBUG, "--- starting up session %d ---\n",
+       syslog(LOG_DEBUG, "--- starting up session %d ---\n",
                CC->cs_pid);
        }
 
 void SessionStopTest(void) {
-       lprintf(CTDL_DEBUG, "--- ending session %d ---\n", 
+       syslog(LOG_DEBUG, "--- ending session %d ---\n", 
                CC->cs_pid);
        }
 
 void LoginTest(void) {
-       lprintf(CTDL_DEBUG, "--- Hello, %s ---\n", CC->curr_user);
+       syslog(LOG_DEBUG, "--- Hello, %s ---\n", CC->curr_user);
        }
 
 /* To insert this module into the server activate the next block by changing the #if 0 to #if 1 */
@@ -62,13 +69,13 @@ CTDL_MODULE_INIT(test)
        if (!threading)
        {
                CtdlRegisterCleanupHook(CleanupTest);
-               CtdlRegisterSessionHook(NewRoomTest, EVT_NEWROOM);
-               CtdlRegisterSessionHook(SessionStartTest, EVT_START);
-               CtdlRegisterSessionHook(SessionStopTest, EVT_STOP);
-               CtdlRegisterSessionHook(LoginTest, EVT_LOGIN);
+               CtdlRegisterSessionHook(NewRoomTest, EVT_NEWROOM, 1);
+               CtdlRegisterSessionHook(SessionStartTest, EVT_START, 1);
+               CtdlRegisterSessionHook(SessionStopTest, EVT_STOP, 1);
+               CtdlRegisterSessionHook(LoginTest, EVT_LOGIN, 1);
        }
 #endif
 
-   /* return our Subversion id for the Log */
-   return "$Id$";
+   /* return our module name for the log */
+   return "test";
 }