summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2013-03-12 20:45:02 +0100
committerattilamolnar <attilamolnar@hush.com>2013-03-20 18:23:43 +0100
commit31de5a7e8f3ed680df6293f96f6b52c1c3a345ef (patch)
treee816238a19997b757922408d87568d6a8e02c96d /src/modules
parente5aaeec62619dfe114010502416af37dc38f5ba1 (diff)
m_permchannels Load channels from the config only at module load time and only when there are no linked servers to avoid desync
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_permchannels.cpp20
1 files changed, 15 insertions, 5 deletions
diff --git a/src/modules/m_permchannels.cpp b/src/modules/m_permchannels.cpp
index 8958cdfcd..b12b9bbeb 100644
--- a/src/modules/m_permchannels.cpp
+++ b/src/modules/m_permchannels.cpp
@@ -172,6 +172,14 @@ public:
ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
OnRehash(NULL);
+
+ // Load only when there are no linked servers - we set the TS of the channels we
+ // create to the current time, this can lead to desync because spanningtree has
+ // no way of knowing what we do
+ ProtoServerList serverlist;
+ ServerInstance->PI->GetServerList(serverlist);
+ if (serverlist.size() < 2)
+ LoadDatabase();
}
CullResult cull()
@@ -202,13 +210,15 @@ public:
virtual void OnRehash(User *user)
{
+ permchannelsconf = ServerInstance->Config->ConfValue("permchanneldb")->getString("filename");
+ }
+
+ void LoadDatabase()
+ {
/*
* Process config-defined list of permanent channels.
* -- w00t
*/
-
- permchannelsconf = ServerInstance->Config->ConfValue("permchanneldb")->getString("filename");
-
ConfigTagList permchannels = ServerInstance->Config->ConfTags("permchannels");
for (ConfigIter i = permchannels.first; i != permchannels.second; ++i)
{
@@ -219,7 +229,7 @@ public:
if (channel.empty())
{
- ServerInstance->Logs->Log("blah", DEBUG, "Malformed permchannels tag with empty channel name.");
+ ServerInstance->Logs->Log("m_permchannels", DEBUG, "Malformed permchannels tag with empty channel name.");
continue;
}
@@ -240,7 +250,7 @@ public:
*/
c->topicset = 42;
}
- ServerInstance->Logs->Log("blah", DEBUG, "Added %s with topic %s", channel.c_str(), topic.c_str());
+ ServerInstance->Logs->Log("m_permchannels", DEBUG, "Added %s with topic %s", channel.c_str(), topic.c_str());
if (modes.empty())
continue;