summaryrefslogtreecommitdiff
path: root/src/cmd_away.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd_away.cpp')
-rw-r--r--src/cmd_away.cpp43
1 files changed, 1 insertions, 42 deletions
diff --git a/src/cmd_away.cpp b/src/cmd_away.cpp
index 10f96c80b..894924938 100644
--- a/src/cmd_away.cpp
+++ b/src/cmd_away.cpp
@@ -1,42 +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 "configreader.h"
-#include "users.h"
-#include "modules.h"
-#include "commands/cmd_away.h"
-
-extern "C" DllExport command_t* init_command(InspIRCd* Instance)
-{
- return new cmd_away(Instance);
-}
-
-/** Handle /AWAY
- */
-CmdResult cmd_away::Handle (const char** parameters, int pcnt, userrec *user)
-{
- if ((pcnt) && (*parameters[0]))
- {
- strlcpy(user->awaymsg,parameters[0],MAXAWAY);
- user->WriteServ("306 %s :You have been marked as being away",user->nick);
- FOREACH_MOD(I_OnSetAway,OnSetAway(user));
- }
- else
- {
- *user->awaymsg = 0;
- user->WriteServ("305 %s :You are no longer marked as being away",user->nick);
- FOREACH_MOD(I_OnCancelAway,OnCancelAway(user));
- }
- return CMD_SUCCESS;
-}
+/* +------------------------------------+ * | 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 "configreader.h" #include "users.h" #include "modules.h" #include "commands/cmd_away.h" extern "C" DllExport command_t* init_command(InspIRCd* Instance) { return new cmd_away(Instance); } /** Handle /AWAY */ CmdResult cmd_away::Handle (const char** parameters, int pcnt, userrec *user) { if ((pcnt) && (*parameters[0])) { strlcpy(user->awaymsg,parameters[0],MAXAWAY); user->WriteServ("306 %s :You have been marked as being away",user->nick); FOREACH_MOD(I_OnSetAway,OnSetAway(user)); } else { *user->awaymsg = 0; user->WriteServ("305 %s :You are no longer marked as being away",user->nick); FOREACH_MOD(I_OnCancelAway,OnCancelAway(user)); } return CMD_SUCCESS; } \ No newline at end of file