]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_serverban.cpp
Remove InspIRCd* parameters and fields
[user/henk/code/inspircd.git] / src / modules / m_serverban.cpp
index 8c5db021ba26bd18c6e89fbba1a700ed309ff478..8103662495c6ad430f5b95815046f7c6441b2c05 100644 (file)
@@ -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.
@@ -19,27 +19,31 @@ class ModuleServerBan : public Module
 {
  private:
  public:
-       ModuleServerBan(InspIRCd* Me) : Module(Me)
-       {
+       ModuleServerBan()       {
                Implementation eventlist[] = { I_OnCheckBan, I_On005Numeric };
                ServerInstance->Modules->Attach(eventlist, this, 2);
        }
 
-       virtual ~ModuleServerBan()
+       ~ModuleServerBan()
        {
        }
 
-       virtual Version GetVersion()
+       Version GetVersion()
        {
-               return Version("$Id$",VF_COMMON|VF_VENDOR,API_VERSION);
+               return Version("Extban 's' - server ban",VF_COMMON|VF_VENDOR);
        }
 
-       virtual int OnCheckBan(User *user, Channel *c)
+       ModResult OnCheckBan(User *user, Channel *c, const std::string& mask)
        {
-               return c->GetExtBanStatus(user->server, 's');
+               if (mask[0] == 's' && mask[1] == ':')
+               {
+                       if (InspIRCd::Match(user->server, mask.substr(2)))
+                               return MOD_RES_DENY;
+               }
+               return MOD_RES_PASSTHRU;
        }
 
-       virtual void On005Numeric(std::string &output)
+       void On005Numeric(std::string &output)
        {
                ServerInstance->AddExtBanChar('s');
        }