summaryrefslogtreecommitdiff
path: root/include/commands/cmd_mode.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-09-03 00:44:11 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-09-03 00:44:11 +0000
commit540f3bd9da75eea65e8ae5e5fd929ff522d95870 (patch)
treebec0072b8a7911367a156de8e1d33f80bb4a376c /include/commands/cmd_mode.h
parent1b7c615062a7b203c7fc3ce4c56e16eb671f7c15 (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 'include/commands/cmd_mode.h')
-rw-r--r--include/commands/cmd_mode.h31
1 files changed, 31 insertions, 0 deletions
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:
+ * <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.
+ *
+ * ---------------------------------------------------
+ */
+
+#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 = "<target> <modes> {<mode-parameters>}"; }
+ void Handle(const char** parameters, int pcnt, userrec *user);
+};
+
+#endif