mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
Merge pull request #58 from Justasic/insp21+connectclass
[2.1] Show class in connectmsg
This commit is contained in:
commit
66d9056fe5
@ -865,8 +865,8 @@ void LocalUser::FullConnect()
|
||||
|
||||
FOREACH_MOD(I_OnPostConnect,OnPostConnect(this));
|
||||
|
||||
ServerInstance->SNO->WriteToSnoMask('c',"Client connecting on port %d: %s!%s@%s [%s] [%s]",
|
||||
this->GetServerPort(), this->nick.c_str(), this->ident.c_str(), this->host.c_str(), this->GetIPString(), this->fullname.c_str());
|
||||
ServerInstance->SNO->WriteToSnoMask('c',"Client connecting on port %d (class %s): %s!%s@%s [%s] [%s]",
|
||||
this->GetServerPort(), this->MyClass->name.c_str(), this->nick.c_str(), this->ident.c_str(), this->host.c_str(), this->GetIPString(), this->fullname.c_str());
|
||||
ServerInstance->Logs->Log("BANCACHE", DEBUG, "BanCache: Adding NEGATIVE hit for %s", this->GetIPString());
|
||||
ServerInstance->BanCache->AddHit(this->GetIPString(), "", "");
|
||||
// reset the flood penalty (which could have been raised due to things like auto +x)
|
||||
|
Loading…
x
Reference in New Issue
Block a user