mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 15:42:26 +02:00
User changes are sent to botnet. Botnet commands are automatically sent
forward unless you stop it with signal_stop_by_name("botnet event").
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@249 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
59d47df22d
commit
4255d6c075
10 changed files with 498 additions and 126 deletions
|
|
@ -23,6 +23,9 @@
|
|||
void bot_commands_deinit(void);
|
||||
void bot_commands_init(void);
|
||||
|
||||
void bot_irc_commands_deinit(void);
|
||||
void bot_irc_commands_init(void);
|
||||
|
||||
void bot_events_init(void);
|
||||
void bot_events_deinit(void);
|
||||
|
||||
|
|
@ -36,6 +39,7 @@ void irc_bot_init(void)
|
|||
{
|
||||
bot_users_init();
|
||||
bot_commands_init();
|
||||
bot_irc_commands_init();
|
||||
bot_events_init();
|
||||
botnet_init();
|
||||
}
|
||||
|
|
@ -44,6 +48,7 @@ void irc_bot_deinit(void)
|
|||
{
|
||||
bot_users_deinit();
|
||||
bot_commands_deinit();
|
||||
bot_irc_commands_deinit();
|
||||
bot_events_deinit();
|
||||
botnet_deinit();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue