aboutsummaryrefslogtreecommitdiff
path: root/protocols.c
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2024-06-14 02:51:58 -0400
committerTest_User <hax@andrewyu.org>2024-06-14 02:51:58 -0400
commit35c5a9f9adab04b821896978520af643ea8b697f (patch)
treeee474fe3e1b54f4e497e5dffa391fba6937d45f3 /protocols.c
parentdadd3396cf719e1ce659926833efd1e17064f2d5 (diff)
downloadhaxircd-35c5a9f9adab04b821896978520af643ea8b697f.tar.gz
haxircd-35c5a9f9adab04b821896978520af643ea8b697f.zip
Basic channel tracking added
Diffstat (limited to 'protocols.c')
-rw-r--r--protocols.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols.c b/protocols.c
index 4b8afc3..288ddd6 100644
--- a/protocols.c
+++ b/protocols.c
@@ -47,6 +47,10 @@ struct protocol protocols[NUM_PROTOCOLS] = {
.propagate_remove_user = inspircd2_protocol_propagate_remove_user,
.propagate_kill_user = inspircd2_protocol_propagate_kill_user,
+ .propagate_set_channel = inspircd2_protocol_propagate_set_channel,
+ .propagate_join_channel = inspircd2_protocol_propagate_join_channel,
+ .propagate_part_channel = inspircd2_protocol_propagate_part_channel,
+
.do_unlink = inspircd2_protocol_do_unlink,
},
#endif