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 --- include/commands/cmd_mode.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 include/commands/cmd_mode.h (limited to 'include/commands/cmd_mode.h') diff --git a/include/commands/cmd_mode.h b/include/commands/cmd_mode.h new file mode 100644 index 000000000..e52042f6a --- /dev/null +++ b/include/commands/cmd_mode.h @@ -0,0 +1,31 @@ +/* +------------------------------------+ + * | 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. + * + * --------------------------------------------------- + */ + +#ifndef __CMD_ADMIN_H__ +#define __CMD_ADMIN_H__ + +#include "users.h" +#include "channels.h" +#include "ctables.h" + +class cmd_mode : public command_t +{ + public: + cmd_mode (InspIRCd* Instance) : command_t(Instance,"MODE",0,1) { syntax = " {}"; } + void Handle(const char** parameters, int pcnt, userrec *user); +}; + +#endif -- cgit v1.2.3