diff options
author | Luke Bratch <luke@bratch.co.uk> | 2019-05-21 22:45:32 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2019-05-21 22:45:32 +0100 |
commit | 5280e648d96fbcb20948f7470afdca8b38f80a44 (patch) | |
tree | 9b1c88d5ba3d92eb96d5ea5654441603e6838a9e /functions.h | |
parent | 19b1a1e816e79d621f23e56587ba59c24c9c70cb (diff) |
Support multiple nick prefixes in channels by storing/relaying server 005/RPL_ISUPPORT messages and implementing the start of IRCv3 CAP negotiations (multi-prefix only at the moment).
Diffstat (limited to 'functions.h')
-rw-r--r-- | functions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.h b/functions.h index 2877bc5..fe1bee8 100644 --- a/functions.h +++ b/functions.h @@ -40,6 +40,6 @@ void extractnickfromprefix(char *string); void updatenickuserhost(char *nickuserhost, char *nick); // Update an existing 001 greeting with a new nickuserhost -void updategreetings(char *greeting001, char *greeting002, char *greeting003, char *greeting004, char *newnickuserhost, char *oldnickuserhost, char *newnick, char *oldnick); +void updategreetings(char *greeting001, char *greeting002, char *greeting003, char *greeting004, char *greeting005a, char *greeting005b, char *greeting005c, char *newnickuserhost, char *oldnickuserhost, char *newnick, char *oldnick); #endif |