]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/netburst.cpp
MetaData rework
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / netburst.cpp
index 1072eb3eb33e55c83c0fbf38315557f745e3e12e..eda627e3fad721481d5537bfce3668de40c31611 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.
@@ -14,9 +14,9 @@
 #include "inspircd.h"
 #include "xline.h"
 
-#include "m_spanningtree/treesocket.h"
-#include "m_spanningtree/treeserver.h"
-#include "m_spanningtree/utils.h"
+#include "treesocket.h"
+#include "treeserver.h"
+#include "utils.h"
 
 /* $ModDep: m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/treesocket.h */
 
@@ -31,7 +31,11 @@ void TreeSocket::DoBurst(TreeServer* s)
        std::string name = s->GetName();
        std::string burst = ":" + this->ServerInstance->Config->GetSID() + " BURST " +ConvToStr(ServerInstance->Time());
        std::string endburst = ":" + this->ServerInstance->Config->GetSID() + " ENDBURST";
-       this->ServerInstance->SNO->WriteToSnoMask('l',"Bursting to \2%s\2 (Authentication: %s).", name.c_str(), this->GetTheirChallenge().empty() ? "plaintext password" : "SHA256-HMAC challenge-response");
+       this->ServerInstance->SNO->WriteToSnoMask('l',"Bursting to \2%s\2 (Authentication: %s%s).",
+               name.c_str(),
+               this->auth_fingerprint ? "SSL Fingerprint and " : "",
+               this->auth_challenge ? "challenge-response" : "plaintext password");
+       this->CleanNegotiationInfo();
        this->WriteLine(burst);
        /* send our version string */
        this->WriteLine(std::string(":")+this->ServerInstance->Config->GetSID()+" VERSION :"+this->ServerInstance->GetVersionString());
@@ -42,7 +46,7 @@ void TreeSocket::DoBurst(TreeServer* s)
        /* Send everything else (channel modes, xlines etc) */
        this->SendChannelModes(s);
        this->SendXLines(s);
-       FOREACH_MOD_I(this->ServerInstance,I_OnSyncOtherMetaData,OnSyncOtherMetaData((Module*)Utils->Creator,(void*)this));
+       FOREACH_MOD_I(this->ServerInstance,I_OnSyncNetwork,OnSyncNetwork((Module*)Utils->Creator,(void*)this));
        this->WriteLine(endburst);
        this->ServerInstance->SNO->WriteToSnoMask('l',"Finished bursting to \2"+name+"\2.");
 }
@@ -84,10 +88,11 @@ void TreeSocket::SendFJoins(TreeServer* Current, Channel* c)
        std::string buffer;
        char list[MAXBUF];
 
-       size_t dlen, curlen;
-       dlen = curlen = snprintf(list,MAXBUF,":%s FJOIN %s %lu +%s", this->ServerInstance->Config->GetSID().c_str(), c->name.c_str(),(unsigned long)c->age, c->ChanModes(true));
+       size_t curlen, headlen;
+       curlen = headlen = snprintf(list,MAXBUF,":%s FJOIN %s %lu +%s :",
+               this->ServerInstance->Config->GetSID().c_str(), c->name.c_str(), (unsigned long)c->age, c->ChanModes(true));
        int numusers = 0;
-       char* ptr = list + dlen;
+       char* ptr = list + curlen;
        bool looped_once = false;
 
        CUList *ulist = c->GetUsers();
@@ -101,14 +106,16 @@ void TreeSocket::SendFJoins(TreeServer* Current, Channel* c)
 
                if ((curlen + modestr.length() + i->first->uuid.length() + 4) > 480)
                {
+                       // remove the final space
+                       if (ptr[-1] == ' ')
+                               ptr[-1] = '\0';
                        buffer.append(list).append("\r\n");
-                       dlen = curlen = snprintf(list, MAXBUF, ":%s FJOIN %s %lu +%s", this->ServerInstance->Config->GetSID().c_str(), c->name.c_str(), (unsigned long)c->age, c->ChanModes(true));
-                       ptr = list + dlen;
+                       curlen = headlen;
+                       ptr = list + headlen;
                        numusers = 0;
                }
 
-               // The first parameter gets a : before it
-               ptrlen = snprintf(ptr, MAXBUF, " %s%s,%s", !numusers ? ":" : "", modestr.c_str(), i->first->uuid.c_str());
+               ptrlen = snprintf(ptr, MAXBUF-curlen, "%s,%s ", modestr.c_str(), i->first->uuid.c_str());
 
                looped_once = true;
 
@@ -121,7 +128,12 @@ void TreeSocket::SendFJoins(TreeServer* Current, Channel* c)
        // Okay, permanent channels will (of course) need this \r\n anyway, numusers check is if there
        // actually were people in the channel (looped_once == true)
        if (!looped_once || numusers > 0)
+       {
+               // remove the final space
+               if (ptr[-1] == ' ')
+                       ptr[-1] = '\0';
                buffer.append(list).append("\r\n");
+       }
 
        int linesize = 1;
        for (BanList::iterator b = c->bans.begin(); b != c->bans.end(); b++)
@@ -207,12 +219,6 @@ void TreeSocket::SendChannelModes(TreeServer* Current)
                        this->WriteLine(data);
                }
                FOREACH_MOD_I(this->ServerInstance,I_OnSyncChannel,OnSyncChannel(c->second,(Module*)Utils->Creator,(void*)this));
-               list.clear();
-               c->second->GetExtList(list);
-               for (unsigned int j = 0; j < list.size(); j++)
-               {
-                       FOREACH_MOD_I(this->ServerInstance,I_OnSyncChannelMetaData,OnSyncChannelMetaData(c->second,(Module*)Utils->Creator,(void*)this,list[j]));
-               }
        }
 }
 
@@ -220,7 +226,6 @@ void TreeSocket::SendChannelModes(TreeServer* Current)
 void TreeSocket::SendUsers(TreeServer* Current)
 {
        char data[MAXBUF];
-       std::deque<std::string> list;
        std::string dataline;
        for (user_hash::iterator u = this->ServerInstance->Users->clientlist->begin(); u != this->ServerInstance->Users->clientlist->end(); u++)
        {
@@ -255,12 +260,6 @@ void TreeSocket::SendUsers(TreeServer* Current)
                        }
 
                        FOREACH_MOD_I(this->ServerInstance,I_OnSyncUser,OnSyncUser(u->second,(Module*)Utils->Creator,(void*)this));
-                       list.clear();
-                       u->second->GetExtList(list);
-                       for (unsigned int j = 0; j < list.size(); j++)
-                       {
-                               FOREACH_MOD_I(this->ServerInstance,I_OnSyncUserMetaData,OnSyncUserMetaData(u->second,(Module*)Utils->Creator,(void*)this,list[j]));
-                       }
                }
        }
 }