mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 08:32:07 +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
13
src/irc/bot/bot-commands.h
Normal file
13
src/irc/bot/bot-commands.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#ifndef __BOT_COMMANDS_H
|
||||
#define __BOT_COMMANDS_H
|
||||
|
||||
void botcmd_user_add(const char *nick);
|
||||
void botcmd_user_set_flags(USER_REC *user, int flags);
|
||||
void botcmd_user_set_channel_flags(USER_REC *user, const char *channel, int flags);
|
||||
|
||||
void botcmd_user_add_mask(USER_REC *user, const char *mask);
|
||||
void botcmd_user_set_mask_notflags(USER_REC *user, const char *mask, int not_flags);
|
||||
|
||||
void botcmd_user_set_password(USER_REC *user, const char *password);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue