]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Update svn:ignore and .gitignore
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>
Mon, 28 Sep 2009 22:39:07 +0000 (22:39 +0000)
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>
Mon, 28 Sep 2009 22:39:07 +0000 (22:39 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11777 e03df62e-2008-0410-955e-edbf42e46eb7

.gitignore
src/modules/extra/m_testclient.cpp [deleted file]
src/modules/m_testclient.cpp [new file with mode: 0644]

index 1d373e98b2348de99a366a920a88f458ac59b1fd..df667074d3a0f0b3de3c2d6b03caec1bc4770f3e 100644 (file)
 /src/modules/m_regex_pcre.cpp
 /src/modules/m_regex_posix.cpp
 /src/modules/m_regex_tre.cpp
-/src/modules/m_sqlauth.cpp
 /src/modules/m_sqlite3.cpp
-/src/modules/m_sqllog.cpp
-/src/modules/m_sqloper.cpp
-/src/modules/m_sqlutils.cpp
 /src/modules/m_ssl_gnutls.cpp
 /src/modules/m_ssl_openssl.cpp
-/src/modules/m_testclient.cpp
 /src/modules/m_ziplink.cpp
diff --git a/src/modules/extra/m_testclient.cpp b/src/modules/extra/m_testclient.cpp
deleted file mode 100644 (file)
index 3e41f53..0000000
+++ /dev/null
@@ -1,104 +0,0 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
- *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
- *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
- *
- * ---------------------------------------------------
- */
-
-#include "inspircd.h"
-#include "m_sqlv2.h"
-
-class ModuleTestClient : public Module
-{
-private:
-
-
-public:
-       ModuleTestClient()
-                       {
-               Implementation eventlist[] = { I_OnRequest, I_OnBackgroundTimer };
-               ServerInstance->Modules->Attach(eventlist, this, 2);
-       }
-
-
-       virtual Version GetVersion()
-       {
-               return Version("Provides SSL support for clients", VF_VENDOR, API_VERSION);
-       }
-
-       virtual void OnBackgroundTimer(time_t)
-       {
-               Module* target = ServerInstance->Modules->FindFeature("SQL");
-
-               if(target)
-               {
-                       SQLrequest foo = SQLrequest(this, target, "foo",
-                                       SQLquery("UPDATE rawr SET foo = '?' WHERE bar = 42") % ServerInstance->Time());
-
-                       if(foo.Send())
-                       {
-                               ServerInstance->Logs->Log("m_testclient.so", DEBUG, "Sent query, got given ID %lu", foo.id);
-                       }
-                       else
-                       {
-                               ServerInstance->Logs->Log("m_testclient.so", DEBUG, "SQLrequest failed: %s", foo.error.Str());
-                       }
-               }
-       }
-
-       virtual const char* OnRequest(Request* request)
-       {
-               if(strcmp(SQLRESID, request->GetId()) == 0)
-               {
-                       ServerInstance->Logs->Log("m_testclient.so", DEBUG, "Got SQL result (%s)", request->GetId());
-
-                       SQLresult* res = (SQLresult*)request;
-
-                       if (res->error.Id() == SQL_NO_ERROR)
-                       {
-                               if(res->Cols())
-                               {
-                                       ServerInstance->Logs->Log("m_testclient.so", DEBUG, "Got result with %d rows and %d columns", res->Rows(), res->Cols());
-
-                                       for (int r = 0; r < res->Rows(); r++)
-                                       {
-                                               ServerInstance->Logs->Log("m_testclient.so", DEBUG, "Row %d:", r);
-
-                                               for(int i = 0; i < res->Cols(); i++)
-                                               {
-                                                       ServerInstance->Logs->Log("m_testclient.so", DEBUG, "\t[%s]: %s", res->ColName(i).c_str(), res->GetValue(r, i).d.c_str());
-                                               }
-                                       }
-                               }
-                               else
-                               {
-                                       ServerInstance->Logs->Log("m_testclient.so", DEBUG, "%d rows affected in query", res->Rows());
-                               }
-                       }
-                       else
-                       {
-                               ServerInstance->Logs->Log("m_testclient.so", DEBUG, "SQLrequest failed: %s", res->error.Str());
-
-                       }
-
-                       return SQLSUCCESS;
-               }
-
-               ServerInstance->Logs->Log("m_testclient.so", DEBUG, "Got unsupported API version string: %s", request->GetId());
-
-               return NULL;
-       }
-
-       virtual ~ModuleTestClient()
-       {
-       }
-};
-
-MODULE_INIT(ModuleTestClient)
-
diff --git a/src/modules/m_testclient.cpp b/src/modules/m_testclient.cpp
new file mode 100644 (file)
index 0000000..3e41f53
--- /dev/null
@@ -0,0 +1,104 @@
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+#include "inspircd.h"
+#include "m_sqlv2.h"
+
+class ModuleTestClient : public Module
+{
+private:
+
+
+public:
+       ModuleTestClient()
+                       {
+               Implementation eventlist[] = { I_OnRequest, I_OnBackgroundTimer };
+               ServerInstance->Modules->Attach(eventlist, this, 2);
+       }
+
+
+       virtual Version GetVersion()
+       {
+               return Version("Provides SSL support for clients", VF_VENDOR, API_VERSION);
+       }
+
+       virtual void OnBackgroundTimer(time_t)
+       {
+               Module* target = ServerInstance->Modules->FindFeature("SQL");
+
+               if(target)
+               {
+                       SQLrequest foo = SQLrequest(this, target, "foo",
+                                       SQLquery("UPDATE rawr SET foo = '?' WHERE bar = 42") % ServerInstance->Time());
+
+                       if(foo.Send())
+                       {
+                               ServerInstance->Logs->Log("m_testclient.so", DEBUG, "Sent query, got given ID %lu", foo.id);
+                       }
+                       else
+                       {
+                               ServerInstance->Logs->Log("m_testclient.so", DEBUG, "SQLrequest failed: %s", foo.error.Str());
+                       }
+               }
+       }
+
+       virtual const char* OnRequest(Request* request)
+       {
+               if(strcmp(SQLRESID, request->GetId()) == 0)
+               {
+                       ServerInstance->Logs->Log("m_testclient.so", DEBUG, "Got SQL result (%s)", request->GetId());
+
+                       SQLresult* res = (SQLresult*)request;
+
+                       if (res->error.Id() == SQL_NO_ERROR)
+                       {
+                               if(res->Cols())
+                               {
+                                       ServerInstance->Logs->Log("m_testclient.so", DEBUG, "Got result with %d rows and %d columns", res->Rows(), res->Cols());
+
+                                       for (int r = 0; r < res->Rows(); r++)
+                                       {
+                                               ServerInstance->Logs->Log("m_testclient.so", DEBUG, "Row %d:", r);
+
+                                               for(int i = 0; i < res->Cols(); i++)
+                                               {
+                                                       ServerInstance->Logs->Log("m_testclient.so", DEBUG, "\t[%s]: %s", res->ColName(i).c_str(), res->GetValue(r, i).d.c_str());
+                                               }
+                                       }
+                               }
+                               else
+                               {
+                                       ServerInstance->Logs->Log("m_testclient.so", DEBUG, "%d rows affected in query", res->Rows());
+                               }
+                       }
+                       else
+                       {
+                               ServerInstance->Logs->Log("m_testclient.so", DEBUG, "SQLrequest failed: %s", res->error.Str());
+
+                       }
+
+                       return SQLSUCCESS;
+               }
+
+               ServerInstance->Logs->Log("m_testclient.so", DEBUG, "Got unsupported API version string: %s", request->GetId());
+
+               return NULL;
+       }
+
+       virtual ~ModuleTestClient()
+       {
+       }
+};
+
+MODULE_INIT(ModuleTestClient)
+