]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_watch.cpp
We were already sending FMODE +nt after each channel creation to keep services happy...
[user/henk/code/inspircd.git] / src / modules / m_watch.cpp
index b46d80b54422a68ce2880afa46c666d8d5ac5f70..ca51fc690b90a343d1e3c2ae2775c39d147dd4b8 100644 (file)
  * ---------------------------------------------------
  */
 
+#include "inspircd.h"
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
 #include "hashcomp.h"
-#include "inspircd.h"
 
 /* $ModDesc: Provides support for the /WATCH command */
 
  * of users using WATCH.
  */
 
-typedef nspace::hash_map<irc::string, std::deque<userrec*>, nspace::hash<irc::string> >     watchentries;
-typedef std::map<irc::string, std::string>                                                  watchlist;
+/*
+ * Before you start screaming, this definition is only used here, so moving it to a header is pointless.
+ * Yes, it's horrid. Blame cl for being different. -- w00t
+ */
+#ifdef WINDOWS
+typedef nspace::hash_map<irc::string, std::deque<userrec*>, nspace::hash_compare<irc::string, less<irc::string> > > watchentries;
+#else
+typedef nspace::hash_map<irc::string, std::deque<userrec*>, nspace::hash<irc::string> > watchentries;
+#endif
+typedef std::map<irc::string, std::string>watchlist;
 
 /* Who's watching each nickname.
  * NOTE: We do NOT iterate this to display a user's WATCH list!
@@ -301,7 +309,7 @@ class Modulewatch : public Module
  public:
 
        Modulewatch(InspIRCd* Me)
-               : Module::Module(Me), maxwatch(32)
+               : Module(Me), maxwatch(32)
        {
                OnRehash(NULL, "");
                whos_watching_me = new watchentries();
@@ -368,15 +376,15 @@ class Modulewatch : public Module
        virtual void OnGarbageCollect()
        {
                watchentries* old_watch = whos_watching_me;
-               whos_watching_me = new watchentries();
+               whos_watching_me = new watchentries();
 
                for (watchentries::const_iterator n = old_watch->begin(); n != old_watch->end(); n++)
                        whos_watching_me->insert(*n);
 
-               delete old_watch;
+               delete old_watch;
        }
 
-        virtual void OnCleanup(int target_type, void* item)
+       virtual void OnCleanup(int target_type, void* item)
        {
                if (target_type == TYPE_USER)
                {
@@ -437,7 +445,7 @@ class Modulewatch : public Module
                                {
                                        if (!user->Visibility || user->Visibility->VisibleTo(user))
                                                (*n)->WriteServ("601 %s %s %s %s %lu :went offline", (*n)->nick, oldnick.c_str(), user->ident, user->dhost, user->age);
-                                       (*wl)[user->nick] = "";
+                                       (*wl)[oldnick.c_str()] = "";
                                }
                        }
                }
@@ -480,7 +488,7 @@ class ModulewatchFactory : public ModuleFactory
 };
 
 
-extern "C" void * init_module( void )
+extern "C" DllExport void * init_module( void )
 {
        return new ModulewatchFactory;
 }