diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-03 00:44:11 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-03 00:44:11 +0000 |
commit | 540f3bd9da75eea65e8ae5e5fd929ff522d95870 (patch) | |
tree | bec0072b8a7911367a156de8e1d33f80bb4a376c /src/cmd_mode.cpp | |
parent | 1b7c615062a7b203c7fc3ce4c56e16eb671f7c15 (diff) |
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
Diffstat (limited to 'src/cmd_mode.cpp')
-rw-r--r-- | src/cmd_mode.cpp | 35 |
1 files changed, 35 insertions, 0 deletions
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: + * <brain@chatspike.net> + * <Craig@chatspike.net> + * + * 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; +} + |