From d20eea410dafb444e3bdfa5fab44d166ea588304 Mon Sep 17 00:00:00 2001 From: Test_User Date: Thu, 13 Jun 2024 01:36:55 -0400 Subject: nick and kill support --- protocols.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'protocols.h') diff --git a/protocols.h b/protocols.h index 723d971..c9fcc58 100644 --- a/protocols.h +++ b/protocols.h @@ -34,9 +34,12 @@ struct protocol { void (*update_propagations)(void); void (*propagate_new_server)(struct string from, struct string attached_to, struct server_info *info); - void (*propagate_unlink)(struct string from, struct server_info *a, struct server_info *b, size_t protocol); + void (*propagate_unlink_server)(struct string from, struct server_info *a, struct server_info *b, size_t protocol); + void (*propagate_new_user)(struct string from, struct user_info *info); + void (*propagate_rename_user)(struct string from, struct user_info *info, struct string nick, size_t timestamp, struct string timestamp_str); void (*propagate_remove_user)(struct string from, struct user_info *info, struct string reason); + void (*propagate_kill_user)(struct string from, struct string source, struct user_info *info, struct string reason); void (*do_unlink)(struct string from, struct server_info *a, struct server_info *b); }; -- cgit v1.2.3