]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/utils.h
Timer changes and TimerManager enhancements
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / utils.h
index 8b73359c380c77936444320e9cd7f1e4372a8c34..36c161287932e2ecb72ff3116a2eaeccd34774bd 100644 (file)
@@ -35,15 +35,19 @@ class SpanningTreeUtilities;
 /* This hash_map holds the hash equivalent of the server
  * tree, used for rapid linear lookups.
  */
-typedef std::tr1::unordered_map<std::string, TreeServer*, std::tr1::insensitive, irc::StrHashComp> server_hash;
+typedef TR1NS::unordered_map<std::string, TreeServer*, irc::insensitive, irc::StrHashComp> server_hash;
 
-typedef std::map<TreeServer*,TreeServer*> TreeServerList;
+typedef std::set<TreeServer*> TreeServerList;
 
 /** Contains helper functions and variables for this module,
  * and keeps them out of the global namespace
  */
 class SpanningTreeUtilities : public classbase
 {
+       /** Creates a line in the :<prefix> <command> [<params>] format
+        */
+       std::string ConstructLine(const std::string& prefix, const std::string& command, const parameterlist& params);
+
  public:
        /** Creator module
         */
@@ -138,10 +142,6 @@ class SpanningTreeUtilities : public classbase
         */
        void ReadConfiguration();
 
-       /** Add a server to the server list for GetListOfServersForChannel
-        */
-       void AddThisServer(TreeServer* server, TreeServerList &list);
-
        /** Compile a list of servers which contain members of channel c
         */
        void GetListOfServersForChannel(Channel* c, TreeServerList &list, char status, const CUList &exempt_list);
@@ -169,4 +169,8 @@ class SpanningTreeUtilities : public classbase
        /** Refresh the IP cache used for allowing inbound connections
         */
        void RefreshIPCache();
+
+       /** Sends a PRIVMSG or a NOTICE to a channel obeying an exempt list and an optional prefix
+        */
+       void SendChannelMessage(const std::string& prefix, Channel* target, const std::string &text, char status, const CUList& exempt_list, const char* message_type);
 };