aboutsummaryrefslogtreecommitdiffstats
path: root/src/opercmd.h
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@ubuntu.com>2019-04-07 00:14:13 -0400
committerLibravatarUnit 193 <unit193@ubuntu.com>2019-04-07 00:14:13 -0400
commit5140318f8f758141b4e350871db1fe869eb858dc (patch)
tree3cf26f4845b2c4674af81f108fbdbf47a996dcff /src/opercmd.h
Import Upstream version 1.1.5upstream/1.1.5
Diffstat (limited to 'src/opercmd.h')
-rw-r--r--src/opercmd.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/opercmd.h b/src/opercmd.h
new file mode 100644
index 0000000..8220801
--- /dev/null
+++ b/src/opercmd.h
@@ -0,0 +1,62 @@
+/*
+ * Copyright (c) 2002 Erik Fears
+ * Copyright (c) 2014-2018 ircd-hybrid development team
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
+ * USA
+ */
+
+#ifndef OPERCMD_H
+#define OPERCMD_H
+
+struct OperCommandHash
+{
+ const char *command;
+ void (*handler)(char *, const char *);
+};
+
+struct Command
+{
+ node_t node; /**< List node; linked into COMMANDS */
+
+ /* Points to specific entry in COMMAND_TABLE in opercmd.c */
+ const struct OperCommandHash *tab;
+
+ /* Command parameter.
+ * <erik> but i cant think of any commands bopm will ever have that is
+ * multiple parameters
+ *
+ * I still havn't -Erik 12/11/02
+ */
+ char *param;
+
+ /* Who ordered it. */
+ char *irc_nick;
+
+ /* Where the reply is to be sent. */
+ const char *target;
+
+ /*
+ * When it was added, because we might need to remove it if it does
+ * not get executed.
+ */
+ time_t added;
+};
+
+extern void command_init(void);
+extern void command_userhost(const char *);
+extern void command_timer(void);
+extern void command_parse(const char *, const char *, const char *);
+#endif