summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index c78f44f46..808234518 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -918,26 +918,6 @@ void InspIRCd::DoOneIteration(bool process_module_sockets)
SocketCull.clear();
}
-bool InspIRCd::IsIdent(const char* n)
-{
- if (!n || !*n)
- return false;
-
- for (char* i = (char*)n; *i; i++)
- {
- if ((*i >= 'A') && (*i <= '}'))
- {
- continue;
- }
- if (((*i >= '0') && (*i <= '9')) || (*i == '-') || (*i == '.'))
- {
- continue;
- }
- return false;
- }
- return true;
-}
-
int InspIRCd::Run()
{
while (true)