summaryrefslogtreecommitdiff
path: root/src/irc/bot/botnet.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/bot/botnet.h')
-rw-r--r--src/irc/bot/botnet.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/irc/bot/botnet.h b/src/irc/bot/botnet.h
index 722ba8be..22765f1d 100644
--- a/src/irc/bot/botnet.h
+++ b/src/irc/bot/botnet.h
@@ -97,10 +97,13 @@ void bot_send_cmd(BOT_REC *bot, char *data);
void bot_send_cmdv(BOT_REC *bot, char *format, ...);
/* broadcast a message to everyone in bot network, except for `except_bot'
- if it's not NULL */
+ if it's not NULL. If botnet is NULL, the message is sent to all botnets. */
void botnet_broadcast(BOTNET_REC *botnet, BOT_REC *except_bot,
const char *source, const char *data);
+void botnet_send_cmd(BOTNET_REC *botnet, const char *source,
+ const char *target, const char *data);
+
BOT_REC *botnet_find_master(BOTNET_REC *botnet, BOT_REC *old_master);
void botnet_set_master(BOTNET_REC *botnet, BOT_REC *bot);