X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/58528547f2e8fed53ade69c3892caa93174fba23..cbfd323c3191336a3c07c24725019cdaf87f0dd6:/src/hash.c diff --git a/src/hash.c b/src/hash.c index ad63f3c..e0ce1f9 100644 --- a/src/hash.c +++ b/src/hash.c @@ -5,7 +5,7 @@ * * x3 is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, @@ -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) { @@ -257,6 +291,8 @@ assign_fakehost(struct userNode *user, const char *host, int announce) void set_geoip_info(struct userNode *user) { + if(IsLocal(user)) + return; /* Need the libs and the headers if this is going to compile properly */ #if defined(HAVE_LIBGEOIP)&&defined(HAVE_GEOIP_H)&&defined(HAVE_GEOIPCITY_H) GeoIPRecord * gir; @@ -266,7 +302,7 @@ set_geoip_info(struct userNode *user) geoip_data_file = conf_get_data("services/opserv/geoip_data_file", RECDB_QSTRING); geoip_city_file = conf_get_data("services/opserv/geoip_city_data_file", RECDB_QSTRING); - if ((!geoip_data_file && !geoip_city_file) || IsLocal(user)) + if ((!geoip_data_file && !geoip_city_file)) return; /* Admin doesnt want to use geoip functions */ if (geoip_data_file && !gi) @@ -711,7 +747,7 @@ ChannelUserKicked(struct userNode* kicker, struct userNode* victim, struct chanN unsigned int n; struct modeNode *mn; - if (!victim || !channel || IsService(victim) || !GetUserMode(channel, victim)) + if (!victim || !channel || !GetUserMode(channel, victim)) return; /* Update the kicker's idle time (kicker may be null if it was a server) */