aboutsummaryrefslogtreecommitdiff
path: root/protocols.c
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2024-07-23 19:00:54 -0400
committerTest_User <hax@andrewyu.org>2024-07-23 19:00:54 -0400
commit59f7687ac18ec938b1f4b8749119fc4454d4d6bf (patch)
tree562df267a8d731b2e63515992487119370694945 /protocols.c
parent74ebc09736f85fb72a5bcdc96b93ae50cf86652d (diff)
downloadhaxircd-59f7687ac18ec938b1f4b8749119fc4454d4d6bf.tar.gz
haxircd-59f7687ac18ec938b1f4b8749119fc4454d4d6bf.zip
InspIRCd v3 support
Diffstat (limited to 'protocols.c')
-rw-r--r--protocols.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols.c b/protocols.c
index bf3959d..269c8f1 100644
--- a/protocols.c
+++ b/protocols.c
@@ -120,6 +120,7 @@ struct protocol protocols[NUM_PROTOCOLS] = {
.propagate_oper_user = inspircd3_protocol_propagate_oper_user,
.propagate_set_account = inspircd3_protocol_propagate_set_account,
+ .propagate_set_cert = inspircd3_protocol_propagate_set_cert,
.propagate_set_channel = inspircd3_protocol_propagate_set_channel,
.propagate_join_channel = inspircd3_protocol_propagate_join_channel,
@@ -139,6 +140,7 @@ struct protocol protocols[NUM_PROTOCOLS] = {
.handle_oper_user = inspircd3_protocol_handle_oper_user,
.handle_set_account = inspircd3_protocol_handle_set_account,
+ .handle_set_cert = inspircd3_protocol_handle_set_cert,
.handle_set_channel = inspircd3_protocol_handle_set_channel,
.handle_join_channel = inspircd3_protocol_handle_join_channel,
@@ -152,6 +154,7 @@ struct protocol protocols[NUM_PROTOCOLS] = {
.fail_oper_user = inspircd3_protocol_fail_oper_user,
.fail_set_account = inspircd3_protocol_fail_set_account,
+ .fail_set_cert = inspircd3_protocol_fail_set_cert,
.fail_set_channel = inspircd3_protocol_fail_set_channel,
.fail_join_channel = inspircd3_protocol_fail_join_channel,