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:
Timo Sirainen 2000-05-29 12:47:25 +00:00 committed by cras
commit 4255d6c075
10 changed files with 498 additions and 126 deletions

View file

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