mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-11 11:39:02 -04:00
Add snomask f (flood)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5097 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
74b5dabce2
commit
3a373e653e
@ -98,5 +98,6 @@ void SnomaskManager::SetupDefaults()
|
||||
this->EnableSnomask('d',"DEBUG"); /* Debug notices */
|
||||
this->EnableSnomask('x',"XLINE"); /* Xline notice (g/z/q/k/e) */
|
||||
this->EnableSnomask('t',"STATS"); /* Local or remote stats request */
|
||||
this->EnableSnomask('f',"FLOOD"); /* Flooding notices */
|
||||
}
|
||||
|
||||
|
@ -113,7 +113,7 @@ void InspIRCd::ProcessUser(userrec* cu)
|
||||
if (current->lines_in > current->flood)
|
||||
{
|
||||
this->Log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
|
||||
this->WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
|
||||
this->SNO->WriteToSnoMask('f',"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
|
||||
userrec::QuitUser(this, current,"Excess flood");
|
||||
return;
|
||||
}
|
||||
@ -126,7 +126,7 @@ void InspIRCd::ProcessUser(userrec* cu)
|
||||
else
|
||||
{
|
||||
this->WriteOpers("*** Excess flood from %s",current->GetIPString());
|
||||
this->Log(DEFAULT,"Excess flood from: %s",current->GetIPString());
|
||||
this->SNO->WriteToSnoMask('f',"Excess flood from: %s",current->GetIPString());
|
||||
XLines->add_zline(120,this->Config->ServerName,"Flood from unregistered connection",current->GetIPString());
|
||||
XLines->apply_lines(APPLY_ZLINES);
|
||||
}
|
||||
@ -143,7 +143,7 @@ void InspIRCd::ProcessUser(userrec* cu)
|
||||
else
|
||||
{
|
||||
this->WriteOpers("*** Excess flood from %s",current->GetIPString());
|
||||
this->Log(DEFAULT,"Excess flood from: %s",current->GetIPString());
|
||||
this->SNO->WriteToSnoMask('f',"Excess flood from: %s",current->GetIPString());
|
||||
XLines->add_zline(120,this->Config->ServerName,"Flood from unregistered connection",current->GetIPString());
|
||||
XLines->apply_lines(APPLY_ZLINES);
|
||||
}
|
||||
@ -163,7 +163,7 @@ void InspIRCd::ProcessUser(userrec* cu)
|
||||
if (++current->lines_in > current->flood)
|
||||
{
|
||||
this->Log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
|
||||
WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
|
||||
this->SNO->WriteToSnoMask('f',"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
|
||||
userrec::QuitUser(this, current,"Excess flood");
|
||||
return;
|
||||
}
|
||||
@ -173,7 +173,7 @@ void InspIRCd::ProcessUser(userrec* cu)
|
||||
if (current->registered == REG_ALL)
|
||||
{
|
||||
this->Log(DEFAULT,"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
|
||||
WriteOpers("*** Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
|
||||
SNO->WriteToSnoMask('f',"Excess flood from: %s!%s@%s",current->nick,current->ident,current->host);
|
||||
userrec::QuitUser(this, current,"Excess flood");
|
||||
}
|
||||
else
|
||||
@ -323,3 +323,4 @@ void InspIRCd::DoBackgroundUserStuff(time_t TIME)
|
||||
/* Remove all the queued users who are due to be quit, free memory used. */
|
||||
GlobalGoners.Apply();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user