summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-31 17:30:18 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-31 17:30:18 +0000
commit8fcac8d43807466858f7a2269ad4da540570d2b7 (patch)
tree5c85febed05c1ae354fd783ed93e7a6c978cbb56 /src
parent4ae08d527280778daf991a38af80956c2b84693b (diff)
More stuff
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8429 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/configreader.cpp14
-rw-r--r--src/xline.cpp45
2 files changed, 49 insertions, 10 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index 96f461162..4c41cf247 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -31,6 +31,7 @@ std::vector<std::string> old_module_names, new_module_names, added_modules, remo
/* Needs forward declaration */
bool ValidateDnsServer(ServerConfig* conf, const char* tag, const char* value, ValueItem &data);
+bool DoneELine(ServerConfig* conf, const char* tag);
ServerConfig::ServerConfig(InspIRCd* Instance) : ServerInstance(Instance)
{
@@ -1973,3 +1974,16 @@ bool DoELine(ServerConfig* conf, const char* tag, char** entries, ValueList &val
return true;
}
+// this should probably be moved to configreader, but atm it relies on CheckELines above.
+bool DoneELine(ServerConfig* conf, const char* tag)
+{
+ for (std::vector<User*>::const_iterator u2 = conf->GetInstance()->local_users.begin(); u2 != conf->GetInstance()->local_users.end(); u2++)
+ {
+ User* u = (User*)(*u2);
+ u->exempt = false;
+ }
+
+ conf->GetInstance()->XLines->CheckELines(conf->GetInstance()->XLines->lookup_lines['E']);
+ return true;
+}
+
diff --git a/src/xline.cpp b/src/xline.cpp
index bc505dcc5..231152f25 100644
--- a/src/xline.cpp
+++ b/src/xline.cpp
@@ -130,7 +130,7 @@ bool XLineManager::AddLine(XLine* line)
{
/*IdentHostPair ih = IdentSplit(hostmask);*/
- if (DelLine(hostmask, line->type, true))
+ if (DelLine(line->Displayable(), line->type, true))
return false;
/*ELine* item = new ELine(ServerInstance, ServerInstance->Time(), duration, source, reason, ih.first.c_str(), ih.second.c_str());*/
@@ -568,32 +568,32 @@ bool GLine::Matches(const std::string &str)
return ((match(str.c_str(), matchtext.c_str(), true)));
}
-virtual bool ELine::MatchesLiteral(const std::string &str)
+bool ELine::MatchesLiteral(const std::string &str)
{
- return (assign(str) == irc::string(this->identmask) + '@' + this->hostmask);
+ return (assign(str) == matchtext);
}
-virtual bool ZLine::MatchesLiteral(const std::string &str)
+bool ZLine::MatchesLiteral(const std::string &str)
{
return (assign(str) == this->ipmask);
}
-virtual bool GLine::MatchesLiteral(const std::string &str)
+bool GLine::MatchesLiteral(const std::string &str)
{
- return (assign(str) == irc::string(this->identmask) + '@' + this->hostmask);
+ return (assign(str) == matchtext);
}
-virtual bool KLine::MatchesLiteral(const std::string &str)
+bool KLine::MatchesLiteral(const std::string &str)
{
- return (assign(str) == irc::string(this->identmask) + '@' + this->hostmask);
+ return (assign(str) == matchtext);
}
-virtual bool QLine::MatchesLiteral(const std::string &str)
+bool QLine::MatchesLiteral(const std::string &str)
{
return (assign(str) == this->nickmask);
}
-virtual void ELine::OnAdd()
+void ELine::OnAdd()
{
ServerInstance->XLines->CheckELines(ServerInstance->XLines->lookup_lines['E']);
}
@@ -623,3 +623,28 @@ void GLine::DisplayExpiry()
ServerInstance->SNO->WriteToSnoMask('x',"Expiring timed G-Line %s@%s (set by %s %d seconds ago)",this->identmask,this->hostmask,this->source,this->duration);
}
+const char* ELine::Displayable()
+{
+ return matchtext.c_str();
+}
+
+const char* KLine::Displayable()
+{
+ return matchtext.c_str();
+}
+
+const char* GLine::Displayable()
+{
+ return matchtext.c_str();
+}
+
+const char* ZLine::Displayable()
+{
+ return ipaddr;
+}
+
+const char* QLine::Displayable()
+{
+ return nickmask;
+}
+