From: brain Date: Fri, 3 Feb 2006 10:03:01 +0000 (+0000) Subject: Added ircu-like hidewhois feature that allows hiding of server name in whois with... X-Git-Tag: v2.0.23~9053 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=7cbc465e2a153f65c242aebc1b2a88d3c667d551;p=user%2Fhenk%2Fcode%2Finspircd.git Added ircu-like hidewhois feature that allows hiding of server name in whois with arbitary string like '*.network.net' git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3034 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/docs/inspircd.conf.example b/docs/inspircd.conf.example index f59b09e50..11fdc6da4 100644 --- a/docs/inspircd.conf.example +++ b/docs/inspircd.conf.example @@ -523,6 +523,13 @@ # instead of the server names in the quit message, # # identical to the way IRCu displays them. # # # +# hidewhois - When defined with a non-empty value, the given # +# text will be used in place of the user's server # +# in WHOIS, when a user is WHOISed by a non-oper. # +# For example, most nets will want to set this to # +# something like '*.netname.net' to conceal the # +# actual server the user is on. # +# # diff --git a/include/inspircd_io.h b/include/inspircd_io.h index a3190cd6a..990b746be 100644 --- a/include/inspircd_io.h +++ b/include/inspircd_io.h @@ -224,6 +224,10 @@ class ServerConfig : public classbase */ bool HideSplits; + /** Set to a non-empty string to obfuscate the server name of users in WHOIS + */ + char HideWhoisServer[MAXBUF]; + /** A list of IP addresses the server is listening * on. */ diff --git a/src/commands.cpp b/src/commands.cpp index 4d09db9fe..4b376bbde 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -133,7 +133,14 @@ void do_whois(userrec* user, userrec* dest,unsigned long signon, unsigned long i WriteServ(user->fd,"319 %s %s :%s",user->nick, dest->nick, cl.c_str()); } } - WriteServ(user->fd,"312 %s %s %s :%s",user->nick, dest->nick, dest->server, GetServerDescription(dest->server).c_str()); + if (*Config->HideWhoisServer) + { + WriteServ(user->fd,"312 %s %s %s :%s",user->nick, dest->nick, *user->oper ? dest->server : Config->HideWhoisServer, *user->oper ? GetServerDescription(dest->server).c_str() : Config->Network); + } + else + { + WriteServ(user->fd,"312 %s %s %s :%s",user->nick, dest->nick, dest->server, GetServerDescription(dest->server).c_str()); + } if (*dest->awaymsg) { WriteServ(user->fd,"301 %s %s :%s",user->nick, dest->nick, dest->awaymsg); diff --git a/src/inspircd_io.cpp b/src/inspircd_io.cpp index 88cb1438f..66fa0908e 100644 --- a/src/inspircd_io.cpp +++ b/src/inspircd_io.cpp @@ -45,7 +45,7 @@ ServerConfig::ServerConfig() { this->ClearStack(); *ServerName = *Network = *ServerDesc = *AdminName = '\0'; - *AdminEmail = *AdminNick = *diepass = *restartpass = '\0'; + *HideWhoisServer = *AdminEmail = *AdminNick = *diepass = *restartpass = '\0'; *CustomVersion = *motd = *rules = *PrefixQuit = *DieValue = *DNSServer = '\0'; *OperOnlyStats = *ModPath = *MyExecutable = *DisabledCommands = *PID = '\0'; log_file = NULL; @@ -227,6 +227,7 @@ void ServerConfig::Read(bool bail, userrec* user) ConfValue("options","customversion",0,Config->CustomVersion,&Config->config_f); ConfValue("options","maxtargets",0,MT,&Config->config_f); ConfValue("options","hidesplits",0,HS,&Config->config_f); + ConfValue("options","hidewhois",0,Config->HideWhoisServer,&Config->config_f); Config->HideSplits = ((*HS == 'y') || (*HS == 'Y') || (*HS == '1') || (*HS == 't') || (*HS == 'T')); Config->SoftLimit = atoi(SLIMT);