diff options
Diffstat (limited to 'src/commands/cmd_loadmodule.cpp')
-rw-r--r-- | src/commands/cmd_loadmodule.cpp | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/commands/cmd_loadmodule.cpp b/src/commands/cmd_loadmodule.cpp new file mode 100644 index 000000000..c6f0a611c --- /dev/null +++ b/src/commands/cmd_loadmodule.cpp @@ -0,0 +1,37 @@ +/* +------------------------------------+ + * | 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_loadmodule.h" + +extern "C" DllExport Command* init_command(InspIRCd* Instance) +{ + return new CommandLoadmodule(Instance); +} + +/** Handle /LOADMODULE + */ +CmdResult CommandLoadmodule::Handle (const char** parameters, int pcnt, User *user) +{ + if (ServerInstance->Modules->Load(parameters[0])) + { + ServerInstance->WriteOpers("*** NEW MODULE: %s loaded %s",user->nick, parameters[0]); + user->WriteServ("975 %s %s :Module successfully loaded.",user->nick, parameters[0]); + return CMD_SUCCESS; + } + else + { + user->WriteServ("974 %s %s :Failed to load module: %s",user->nick, parameters[0], ServerInstance->Modules->LastError()); + return CMD_FAILURE; + } +} |