summaryrefslogtreecommitdiff
path: root/src/irc/irc-commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/irc-commands.c')
-rw-r--r--src/irc/irc-commands.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/irc/irc-commands.c b/src/irc/irc-commands.c
index f852adf44..00ef9c7b5 100644
--- a/src/irc/irc-commands.c
+++ b/src/irc/irc-commands.c
@@ -145,6 +145,12 @@ t_irc_command irc_commands[] =
N_("data"),
N_("data: raw data to send"),
1, MAX_ARGS, 1, NULL, irc_cmd_send_quote, NULL },
+ { "rehash", N_("tell the server to reload its config file"),
+ "", "",
+ 0, 0, 1, NULL, irc_cmd_send_rehash, NULL },
+ { "restart", N_("tell the server to restart itself"),
+ "", "",
+ 0, 0, 1, NULL, irc_cmd_send_restart, NULL },
{ "topic", N_("get/set channel topic"),
N_("[channel] [topic]"), N_("channel: channel name\ntopic: new topic for channel "
"(if topic is \"-delete\" then topic is deleted)"),
@@ -962,6 +968,34 @@ irc_cmd_send_quote (t_irc_server *server, char *arguments)
}
/*
+ * irc_cmd_send_rehash: tell the server to reload its config file
+ */
+
+int
+irc_cmd_send_rehash (t_irc_server *server, char *arguments)
+{
+ /* make gcc happy */
+ (void) arguments;
+
+ server_sendf (server, "REHASH\r\n");
+ return 0;
+}
+
+/*
+ * irc_cmd_send_restart: tell the server to restart itself
+ */
+
+int
+irc_cmd_send_restart (t_irc_server *server, char *arguments)
+{
+ /* make gcc happy */
+ (void) arguments;
+
+ server_sendf (server, "RESTART\r\n");
+ return 0;
+}
+
+/*
* irc_cmd_send_topic: get/set topic for a channel
*/