X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/0f6fe38cf6a842e638aa35ac7641e1e792634e2c..50220e579db9eb8e9d5ade20154302ec750da8ab:/src/hash.c diff --git a/src/hash.c b/src/hash.c index 214d6b9..c45e5a3 100644 --- a/src/hash.c +++ b/src/hash.c @@ -197,6 +197,40 @@ NickChange(struct userNode* user, const char *new_nick, int no_announce) free(old_nick); } +void +SVSNickChange(struct userNode* user, const char *new_nick) +{ + char *old_nick; + unsigned int nn; + + /* don't do anything if there's no change */ + old_nick = user->nick; + if (!strncmp(new_nick, old_nick, NICKLEN)) + return; + + /* remove old entry from clients dictionary */ + dict_remove(clients, old_nick); +#if !defined(WITH_PROTOCOL_P10) + /* Remove from uplink's clients dict */ + dict_remove(user->uplink->users, old_nick); +#endif + /* and reinsert */ + user->nick = strdup(new_nick); + dict_insert(clients, user->nick, user); +#if !defined(WITH_PROTOCOL_P10) + dict_insert(user->uplink->users, user->nick, user); +#endif + + /* Make callbacks for nick changes. Do this with new nick in + * place because that is slightly more useful. + */ + for (nn=0; nntimestamp = now; + + free(old_nick); +} + struct userNode * GetUserH(const char *nick) { @@ -219,7 +253,8 @@ call_account_func(struct userNode *user, const char *stamp) { /* We've received an account stamp for a user; notify NickServ, which registers the sole account_func - right now. + right now. TODO: This is a bug. This needs to register + a proper list not just kill with each call!! -Rubin P10 Protocol violation if (user->modes & FLAGS_STAMPED) here. */