aboutsummaryrefslogtreecommitdiff
path: root/protocols.h
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2024-06-14 20:24:27 -0400
committerTest_User <hax@andrewyu.org>2024-06-14 20:24:27 -0400
commit55c968cbe14ab1867cdd25edca90fcb8553d853a (patch)
tree491eefc2f756bc31e8688bff0dd24aa6de3cd32b /protocols.h
parente109069edf84f41c17f9c43f9f20b6d4d2725235 (diff)
downloadhaxircd-55c968cbe14ab1867cdd25edca90fcb8553d853a.tar.gz
haxircd-55c968cbe14ab1867cdd25edca90fcb8553d853a.zip
KICK support, more HaxServ stuff
Diffstat (limited to 'protocols.h')
-rw-r--r--protocols.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols.h b/protocols.h
index 410bfb1..6d8a240 100644
--- a/protocols.h
+++ b/protocols.h
@@ -49,6 +49,7 @@ struct protocol {
void (*propagate_set_channel)(struct string from, struct channel_info *channel, char is_new_channel, size_t user_count, struct user_info **users);
void (*propagate_join_channel)(struct string from, struct channel_info *channel, size_t user_count, struct user_info **users);
void (*propagate_part_channel)(struct string from, struct channel_info *channel, struct user_info *user, struct string reason);
+ void (*propagate_kick_channel)(struct string from, struct string source, struct channel_info *channel, struct user_info *user, struct string reason);
void (*propagate_privmsg)(struct string from, struct string source, struct string target, struct string msg);
void (*propagate_notice)(struct string from, struct string source, struct string target, struct string msg);