1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

Rename /proxy command to /irssiproxy for clarity

This commit is contained in:
dequis 2015-06-14 11:57:11 -03:00
parent 29fb0d9802
commit a47f45b5b7
4 changed files with 23 additions and 23 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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);