]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/extra/m_testclient.cpp
fix warnings
[user/henk/code/inspircd.git] / src / modules / extra / m_testclient.cpp
index f4e58b7b5969cbee5810b759585c3c129d47ac95..f439ee38b092ec9c7801af52824736cc47f1d8bc 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
@@ -27,25 +27,24 @@ public:
        ModuleTestClient(InspIRCd* Me)
                : Module::Module(Me)
        {
+               Implementation eventlist[] = { I_OnRequest, I_OnBackgroundTimer };
+               ServerInstance->Modules->Attach(eventlist, this, 2);
        }
 
-       void Implements(char* List)
-       {
-               List[I_OnRequest] = List[I_OnBackgroundTimer] = 1;
-       }
                
        virtual Version GetVersion()
        {
-               return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION);
+               return Version(1, 2, 0, 0, VF_VENDOR, API_VERSION);
        }
        
-       virtual void OnBackgroundTimer(time_t foo)
+       virtual void OnBackgroundTimer(time_t)
        {
-               Module* target = ServerInstance->FindFeature("SQL");
+               Module* target = ServerInstance->Modules->FindFeature("SQL");
                
                if(target)
                {
-                       SQLrequest foo = SQLreq(this, target, "foo", "UPDATE rawr SET foo = '?' WHERE bar = 42", ConvToStr(time(NULL)));
+                       SQLrequest foo = SQLrequest(this, target, "foo",
+                                       SQLquery("UPDATE rawr SET foo = '?' WHERE bar = 42") % time(NULL));
                        
                        if(foo.Send())
                        {
@@ -58,7 +57,7 @@ public:
                }
        }
        
-       virtual char* OnRequest(Request* request)
+       virtual const char* OnRequest(Request* request)
        {
                if(strcmp(SQLRESID, request->GetId()) == 0)
                {
@@ -106,5 +105,5 @@ public:
        }       
 };
 
-MODULE_INIT(ModuleTestClient);
+MODULE_INIT(ModuleTestClient)