]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_server.cpp
Check is off by one, this wont break anything but will cut a character off the set...
[user/henk/code/inspircd.git] / src / cmd_server.cpp
index acad55b1bb584ca867aaaab5851ca5ef4859093a..0b71ba0056fc006a4786673ff6875a0931645c7d 100644 (file)
@@ -1 +1,29 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#include "inspircd.h"\r#include "users.h"\r#include "commands/cmd_server.h"\r\r\r\rextern "C" DllExport command_t* init_command(InspIRCd* Instance)\r{\r   return new cmd_server(Instance);\r}\r\rCmdResult cmd_server::Handle (const char** parameters, int pcnt, userrec *user)\r{\r  user->WriteServ("666 %s :You cannot identify as a server, you are a USER. IRC Operators informed.",user->nick);\r        ServerInstance->WriteOpers("*** WARNING: %s attempted to issue a SERVER command and is registered as a user!",user->nick);\r     return CMD_FAILURE;\r}\r
\ No newline at end of file
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+#include "inspircd.h"
+#include "commands/cmd_server.h"
+
+
+
+extern "C" DllExport command_t* init_command(InspIRCd* Instance)
+{
+       return new cmd_server(Instance);
+}
+
+CmdResult cmd_server::Handle (const char** parameters, int pcnt, userrec *user)
+{
+       user->WriteServ("666 %s :You cannot identify as a server, you are a USER. IRC Operators informed.",user->nick);
+       ServerInstance->WriteOpers("*** WARNING: %s attempted to issue a SERVER command and is registered as a user!",user->nick);
+       return CMD_FAILURE;
+}