]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/motd.cpp
Remove MaxMapHeight, replace with dynamically sized buffers
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / motd.cpp
index 517d4b48c01b7f8ef6756e7c6085156a6cd66e10..fa8923a7aceed6c16ab38900a896a7bc5e595edf 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
@@ -27,11 +27,11 @@ bool TreeSocket::Motd(const std::string &prefix, std::deque<std::string> &params
 {
        if (params.size() > 0)
        {
-               if (this->Instance->MatchText(this->Instance->Config->ServerName, params[0]))
+               if (InspIRCd::Match(this->ServerInstance->Config->ServerName, params[0]))
                {
                        /* It's for our server */
                        string_list results;
-                       User* source = this->Instance->FindNick(prefix);
+                       User* source = this->ServerInstance->FindNick(prefix);
 
                        if (source)
                        {
@@ -39,30 +39,30 @@ bool TreeSocket::Motd(const std::string &prefix, std::deque<std::string> &params
                                par.push_back(prefix);
                                par.push_back("");
 
-                               if (!Instance->Config->MOTD.size())
+                               if (!ServerInstance->Config->MOTD.size())
                                {
-                                       par[1] = std::string("::")+Instance->Config->ServerName+" 422 "+source->nick+" :Message of the day file is missing.";
-                                       Utils->DoOneToOne(this->Instance->Config->GetSID(), "PUSH",par, source->server);
+                                       par[1] = std::string("::")+ServerInstance->Config->ServerName+" 422 "+source->nick+" :Message of the day file is missing.";
+                                       Utils->DoOneToOne(this->ServerInstance->Config->GetSID(), "PUSH",par, source->server);
                                        return true;
                                }
 
-                               par[1] = std::string("::")+Instance->Config->ServerName+" 375 "+source->nick+" :"+Instance->Config->ServerName+" message of the day";
-                               Utils->DoOneToOne(this->Instance->Config->GetSID(), "PUSH",par, source->server);
+                               par[1] = std::string("::")+ServerInstance->Config->ServerName+" 375 "+source->nick+" :"+ServerInstance->Config->ServerName+" message of the day";
+                               Utils->DoOneToOne(this->ServerInstance->Config->GetSID(), "PUSH",par, source->server);
 
-                               for (unsigned int i = 0; i < Instance->Config->MOTD.size(); i++)
+                               for (unsigned int i = 0; i < ServerInstance->Config->MOTD.size(); i++)
                                {
-                                       par[1] = std::string("::")+Instance->Config->ServerName+" 372 "+source->nick+" :- "+Instance->Config->MOTD[i];
-                                       Utils->DoOneToOne(this->Instance->Config->GetSID(), "PUSH",par, source->server);
+                                       par[1] = std::string("::")+ServerInstance->Config->ServerName+" 372 "+source->nick+" :- "+ServerInstance->Config->MOTD[i];
+                                       Utils->DoOneToOne(this->ServerInstance->Config->GetSID(), "PUSH",par, source->server);
                                }
 
-                               par[1] = std::string("::")+Instance->Config->ServerName+" 376 "+source->nick+" :End of message of the day.";
-                               Utils->DoOneToOne(this->Instance->Config->GetSID(), "PUSH",par, source->server);
+                               par[1] = std::string("::")+ServerInstance->Config->ServerName+" 376 "+source->nick+" :End of message of the day.";
+                               Utils->DoOneToOne(this->ServerInstance->Config->GetSID(), "PUSH",par, source->server);
                        }
                }
                else
                {
                        /* Pass it on */
-                       User* source = this->Instance->FindNick(prefix);
+                       User* source = this->ServerInstance->FindNick(prefix);
                        if (source)
                                Utils->DoOneToOne(prefix, "MOTD", params, params[0]);
                }