From a47f45b5b7438209177d76f3efde559e61e5bdb7 Mon Sep 17 00:00:00 2001 From: dequis Date: Sun, 14 Jun 2015 11:57:11 -0300 Subject: [PATCH] Rename /proxy command to /irssiproxy for clarity --- docs/help/in/irssiproxy.in | 14 ++++++++++++++ docs/help/in/proxy.in | 14 -------------- docs/proxy.txt | 2 +- src/irc/proxy/proxy.c | 16 ++++++++-------- 4 files changed, 23 insertions(+), 23 deletions(-) create mode 100644 docs/help/in/irssiproxy.in delete mode 100644 docs/help/in/proxy.in diff --git a/docs/help/in/irssiproxy.in b/docs/help/in/irssiproxy.in new file mode 100644 index 00000000..79d75b91 --- /dev/null +++ b/docs/help/in/irssiproxy.in @@ -0,0 +1,14 @@ + +@SYNTAX:irssiproxy@ + +%9Description:%9 + + Displays the list of clients connected to irssiproxy. + +%9Examples:%9 + + /IRSSIPROXY + /IRSSIPROXY STATUS + +%9See also:%9 LOAD PROXY, SET irssiproxy + diff --git a/docs/help/in/proxy.in b/docs/help/in/proxy.in deleted file mode 100644 index 2dc61f43..00000000 --- a/docs/help/in/proxy.in +++ /dev/null @@ -1,14 +0,0 @@ - -@SYNTAX:proxy@ - -%9Description:%9 - - Displays the list of clients connected to the proxy. - -%9Examples:%9 - - /PROXY - /PROXY STATUS - -%9See also:%9 LOAD PROXY, SET irssiproxy - diff --git a/docs/proxy.txt b/docs/proxy.txt index 759ef1dc..e6360a82 100644 --- a/docs/proxy.txt +++ b/docs/proxy.txt @@ -45,4 +45,4 @@ Once everything is set up, you can enable / disable the proxy: When the proxy is configured and running, the following command will show all the currently connected clients: - /PROXY status + /IRSSIPROXY status diff --git a/src/irc/proxy/proxy.c b/src/irc/proxy/proxy.c index 65c778d1..ce79e2b7 100644 --- a/src/irc/proxy/proxy.c +++ b/src/irc/proxy/proxy.c @@ -25,8 +25,8 @@ #include "fe-common/core/printtext.h" -/* SYNTAX: PROXY STATUS */ -static void cmd_proxy_status(const char *data, IRC_SERVER_REC *server) +/* SYNTAX: IRSSIPROXY STATUS */ +static void cmd_irssiproxy_status(const char *data, IRC_SERVER_REC *server) { if (!settings_get_bool("irssiproxy")) { printtext(server, NULL, MSGLEVEL_CLIENTNOTICE, @@ -51,15 +51,15 @@ static void cmd_proxy_status(const char *data, IRC_SERVER_REC *server) } } -/* SYNTAX: PROXY */ -static void cmd_proxy(const char *data, IRC_SERVER_REC *server, void *item) +/* SYNTAX: IRSSIPROXY */ +static void cmd_irssiproxy(const char *data, IRC_SERVER_REC *server, void *item) { if (*data == '\0') { - cmd_proxy_status(data, server); + cmd_irssiproxy_status(data, server); return; } - command_runsub("proxy", data, server, item); + command_runsub("irssiproxy", data, server, item); } static void irc_proxy_setup_changed(void) @@ -92,8 +92,8 @@ void irc_proxy_init(void) "... to set them."); } - command_bind("proxy", NULL, (SIGNAL_FUNC) cmd_proxy); - command_bind("proxy status", NULL, (SIGNAL_FUNC) cmd_proxy_status); + command_bind("irssiproxy", NULL, (SIGNAL_FUNC) cmd_irssiproxy); + command_bind("irssiproxy status", NULL, (SIGNAL_FUNC) cmd_irssiproxy_status); signal_add_first("setup changed", (SIGNAL_FUNC) irc_proxy_setup_changed);