mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 20:00:23 +02:00
Fixed /KNOCK support.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3305 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
19ca0eb059
commit
4cc4ddc1a7
2 changed files with 6 additions and 2 deletions
|
|
@ -1017,6 +1017,8 @@ void irc_commands_init(void)
|
|||
command_bind_irc("admin", NULL, (SIGNAL_FUNC) command_self);
|
||||
/* SYNTAX: INFO [<server>] */
|
||||
command_bind_irc("info", NULL, (SIGNAL_FUNC) command_self);
|
||||
/* SYNTAX: KNOCK <channel> */
|
||||
command_bind_irc("knock", NULL, (SIGNAL_FUNC) command_self);
|
||||
/* SYNTAX: LINKS [[<server>] <mask>] */
|
||||
command_bind_irc("links", NULL, (SIGNAL_FUNC) command_self);
|
||||
/* SYNTAX: LUSERS [<server mask> [<remote server>]] */
|
||||
|
|
@ -1108,6 +1110,7 @@ void irc_commands_deinit(void)
|
|||
command_unbind("ison", (SIGNAL_FUNC) command_1self);
|
||||
command_unbind("admin", (SIGNAL_FUNC) command_self);
|
||||
command_unbind("info", (SIGNAL_FUNC) command_self);
|
||||
command_unbind("knock", (SIGNAL_FUNC) command_self);
|
||||
command_unbind("links", (SIGNAL_FUNC) command_self);
|
||||
command_unbind("lusers", (SIGNAL_FUNC) command_self);
|
||||
command_unbind("map", (SIGNAL_FUNC) command_self);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue