aboutsummaryrefslogtreecommitdiff
path: root/protocols.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols.h')
-rw-r--r--protocols.h5
1 files changed, 4 insertions, 1 deletions
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);
};