From 540f3bd9da75eea65e8ae5e5fd929ff522d95870 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 3 Sep 2006 00:44:11 +0000 Subject: Add /RELOAD and move cmd_mode into its own command. /RELOAD is the only thing you cant reload (ahem) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5119 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/cmd_mode.cpp | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/cmd_mode.cpp (limited to 'src/cmd_mode.cpp') diff --git a/src/cmd_mode.cpp b/src/cmd_mode.cpp new file mode 100644 index 000000000..c1d128bf9 --- /dev/null +++ b/src/cmd_mode.cpp @@ -0,0 +1,35 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. + * E-mail: + * + * + * + * Written by Craig Edwards, Craig McLure, and others. + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +#include "configreader.h" +#include "users.h" +#include "commands/cmd_mode.h" + +extern "C" command_t* init_command(InspIRCd* Instance) +{ + return new cmd_mode(Instance); +} + +void cmd_mode::Handle (const char** parameters, int pcnt, userrec *user) +{ + if (!user) + return; + + ServerInstance->Modes->Process(parameters, pcnt, user, false); + + return; +} + -- cgit v1.3.1-10-gc9f91