]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setname.cpp
'svn propset -R svn:eol-style CR *' Set to UNIX-style always. Binaries are auto skipp...
[user/henk/code/inspircd.git] / src / modules / m_setname.cpp
index ecf0d41a97003e88414a15b61327bbf1ce35561a..3f525622f15aa21b87bfc9e6cdc0fc4de54cec83 100644 (file)
@@ -1,80 +1 @@
-/*       +------------------------------------+
- *       | 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 "users.h"
-#include "channels.h"
-#include "modules.h"
-
-/* $ModDesc: Provides support for the SETNAME command */
-
-
-
-class cmd_setname : public command_t
-{
- public:
-       cmd_setname (InspIRCd* Instance) : command_t(Instance,"SETNAME", 0, 1)
-       {
-               this->source = "m_setname.so";
-               syntax = "<new-gecos>";
-       }
-
-       CmdResult Handle (const char** parameters, int pcnt, userrec *user)
-       {
-               if (!*parameters[0])
-               {
-                       user->WriteServ("NOTICE %s :*** SETNAME: GECOS must be specified", user->nick);
-                       return CMD_FAILURE;
-               }
-               
-               if (strlen(parameters[0]) > MAXGECOS)
-               {
-                       user->WriteServ("NOTICE %s :*** SETNAME: GECOS too long", user->nick);
-                       return CMD_FAILURE;
-               }
-               
-               if (user->ChangeName(parameters[0]))
-               {
-                       ServerInstance->WriteOpers("%s used SETNAME to change their GECOS to %s", user->nick, parameters[0]);
-                       return CMD_SUCCESS;
-               }
-
-               return CMD_SUCCESS;
-       }
-};
-
-
-class ModuleSetName : public Module
-{
-       cmd_setname*    mycommand;
- public:
-       ModuleSetName(InspIRCd* Me)
-               : Module(Me)
-       {
-               
-               mycommand = new cmd_setname(ServerInstance);
-               ServerInstance->AddCommand(mycommand);
-       }
-       
-       virtual ~ModuleSetName()
-       {
-       }
-       
-       virtual Version GetVersion()
-       {
-               return Version(1,1,0,1,VF_VENDOR,API_VERSION);
-       }
-       
-};
-
-MODULE_INIT(ModuleSetName);
+/*       +------------------------------------+\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 "channels.h"\r#include "modules.h"\r\r/* $ModDesc: Provides support for the SETNAME command */\r\r\r\rclass cmd_setname : public command_t\r{\r public:\r  cmd_setname (InspIRCd* Instance) : command_t(Instance,"SETNAME", 0, 1)\r {\r              this->source = "m_setname.so";\r         syntax = "<new-gecos>";\r        }\r\r     CmdResult Handle (const char** parameters, int pcnt, userrec *user)\r    {\r              if (!*parameters[0])\r           {\r                      user->WriteServ("NOTICE %s :*** SETNAME: GECOS must be specified", user->nick);\r                        return CMD_FAILURE;\r            }\r              \r               if (strlen(parameters[0]) > MAXGECOS)\r          {\r                      user->WriteServ("NOTICE %s :*** SETNAME: GECOS too long", user->nick);\r                 return CMD_FAILURE;\r            }\r              \r               if (user->ChangeName(parameters[0]))\r           {\r                      ServerInstance->WriteOpers("%s used SETNAME to change their GECOS to %s", user->nick, parameters[0]);\r                  return CMD_SUCCESS;\r            }\r\r             return CMD_SUCCESS;\r    }\r};\r\r\rclass ModuleSetName : public Module\r{\r   cmd_setname*    mycommand;\r public:\r    ModuleSetName(InspIRCd* Me)\r            : Module(Me)\r   {\r              \r               mycommand = new cmd_setname(ServerInstance);\r           ServerInstance->AddCommand(mycommand);\r }\r      \r       virtual ~ModuleSetName()\r       {\r      }\r      \r       virtual Version GetVersion()\r   {\r              return Version(1,1,0,1,VF_VENDOR,API_VERSION);\r }\r      \r};\r\rMODULE_INIT(ModuleSetName)\r
\ No newline at end of file