X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsnomasks.cpp;h=e12f95d6b4eb754b72639490cc5fd575ce7e3e80;hb=16b8e22615e6b3351b47d13e0540600fa590d0cb;hp=787d98b0a361e4aa1b102ee5492cc182291d240d;hpb=516825e9ddd5f91359ac3cca51e8d8e9070dc96f;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/snomasks.cpp b/src/snomasks.cpp index 787d98b0a..e12f95d6b 100644 --- a/src/snomasks.cpp +++ b/src/snomasks.cpp @@ -3,7 +3,7 @@ * +------------------------------------+ * * InspIRCd: (C) 2002-2009 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -73,6 +73,13 @@ void SnomaskManager::WriteToSnoMask(char letter, const std::string &text) } } +void SnomaskManager::WriteGlobalSno(char letter, const std::string& text) +{ + WriteToSnoMask(letter, text); + letter = toupper(letter); + ServerInstance->PI->SendSNONotice(std::string(1, letter), text); +} + void SnomaskManager::WriteToSnoMask(char letter, const char* text, ...) { char textbuffer[MAXBUF]; @@ -85,6 +92,18 @@ void SnomaskManager::WriteToSnoMask(char letter, const char* text, ...) this->WriteToSnoMask(letter, std::string(textbuffer)); } +void SnomaskManager::WriteGlobalSno(char letter, const char* text, ...) +{ + char textbuffer[MAXBUF]; + va_list argsPtr; + + va_start(argsPtr, text); + vsnprintf(textbuffer, MAXBUF, text, argsPtr); + va_end(argsPtr); + + this->WriteGlobalSno(letter, std::string(textbuffer)); +} + bool SnomaskManager::IsEnabled(char letter) { return (SnoMasks.find(letter) != SnoMasks.end()); @@ -102,7 +121,8 @@ void SnomaskManager::SetupDefaults() this->EnableSnomask('L',"REMOTELINK"); /* Remote linking notices */ this->EnableSnomask('o',"OPER"); /* Oper up/down notices */ this->EnableSnomask('O',"REMOTEOPER"); /* Remote oper up/down notices */ - this->EnableSnomask('A',"ANNOUNCEMENT"); /* formerly WriteOpers() - generic notices to all opers */ + this->EnableSnomask('a',"ANNOUNCEMENT"); /* formerly WriteOpers() - generic notices to all opers */ + this->EnableSnomask('A',"REMOTEANNOUNCEMENT"); /* formerly WriteOpers() - generic notices to all opers */ 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 */