aboutsummaryrefslogtreecommitdiff
path: root/protocols.c
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2024-06-10 04:45:33 -0400
committerTest_User <hax@andrewyu.org>2024-06-10 04:45:33 -0400
commit0bc78fc2d38c2ed79eb0e990c08aee9474f7ae60 (patch)
treec29bec6561aba396c7769d6f7e236dc2877bd338 /protocols.c
parent525b2239812c815bf414d948e09c70f6b6ea2d31 (diff)
downloadhaxircd-0bc78fc2d38c2ed79eb0e990c08aee9474f7ae60.tar.gz
haxircd-0bc78fc2d38c2ed79eb0e990c08aee9474f7ae60.zip
Basic server tracking added
Diffstat (limited to 'protocols.c')
-rw-r--r--protocols.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/protocols.c b/protocols.c
index eb1e6f4..59a1a32 100644
--- a/protocols.c
+++ b/protocols.c
@@ -35,8 +35,11 @@
struct protocol protocols[NUM_PROTOCOLS] = {
#ifdef USE_INSPIRCD2_PROTOCOL
[INSPIRCD2_PROTOCOL] = {
- .handle_connection = inspircd2_protocol_handle_connection,
+ .handle_connection = inspircd2_protocol_connection,
.autoconnect = inspircd2_protocol_autoconnect,
+ .update_propagations = inspircd2_protocol_update_propagations,
+
+ .do_unlink = inspircd2_protocol_do_unlink,
},
#endif
};