summaryrefslogtreecommitdiff
path: root/src/modules.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index fd5672cd3..94ba661e0 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -338,11 +338,6 @@ bool InspIRCd::MatchText(const std::string &sliteral, const std::string &spatter
return match(sliteral.c_str(),spattern.c_str());
}
-bool InspIRCd::IsUlined(const std::string &server)
-{
- return is_uline(server.c_str());
-}
-
bool InspIRCd::CallCommandHandler(const std::string &commandname, const char** parameters, int pcnt, userrec* user)
{
return this->Parser->CallHandler(commandname,parameters,pcnt,user);
@@ -521,11 +516,6 @@ bool InspIRCd::DelELine(const std::string &hostmask)
return XLines->del_eline(hostmask.c_str());
}
-long InspIRCd::CalcDuration(const std::string &delta)
-{
- return duration(delta.c_str());
-}
-
/*
* XXX why on *earth* is this in modules.cpp...? I think
* perhaps we need a server.cpp for InspIRCd:: stuff where possible. -- w00t