From 97c7c3ff2a483e42f4e4ef900fc9ea493d498ebb Mon Sep 17 00:00:00 2001 From: danieldg Date: Sat, 18 Apr 2009 19:51:24 +0000 Subject: Add global-routing snomask functions git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11314 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/snomasks.h | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/snomasks.h b/include/snomasks.h index a8e5c525c..e1af1a109 100644 --- a/include/snomasks.h +++ b/include/snomasks.h @@ -90,19 +90,33 @@ class CoreExport SnomaskManager : public Extensible */ bool DisableSnomask(char letter); - /** Write to all users with a given snomask. + /** Write to all users with a given snomask (local server only) * @param letter The snomask letter to write to * @param text The text to send to the users */ void WriteToSnoMask(char letter, const std::string &text); - /** Write to all users with a given snomask. + /** Write to all users with a given snomask (local server only) * @param letter The snomask letter to write to * @param text A format string containing text to send * @param ... Format arguments */ void WriteToSnoMask(char letter, const char* text, ...) CUSTOM_PRINTF(3, 4); + /** Write to all users with a given snomask (sent globally) + * @param letter The snomask letter to write to + * @param text The text to send to the users + */ + void WriteGlobalSno(char letter, const std::string &text); + + /** Write to all users with a given snomask (sent globally) + * @param letter The snomask letter to write to + * @param text A format string containing text to send + * @param ... Format arguments + */ + void WriteGlobalSno(char letter, const char* text, ...) CUSTOM_PRINTF(3, 4); + + /** Called once per 5 seconds from the mainloop, this flushes any cached * snotices. The way the caching works is as follows: * Calls to WriteToSnoMask write to a cache, if the call is the same as it was -- cgit v1.2.3