From 8b9664a6af2edaa3a51dacb9fb5cfca178241289 Mon Sep 17 00:00:00 2001
From: w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Date: Mon, 2 Oct 2006 01:47:47 +0000
Subject: IsNick moved to helperfuncs.cpp, makes a lot more sense than
 inspircd.cpp

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5388 e03df62e-2008-0410-955e-edbf42e46eb7
---
 src/inspircd.cpp | 24 ------------------------
 1 file changed, 24 deletions(-)

(limited to 'src/inspircd.cpp')

diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 60af8e235..2f35c9528 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -708,30 +708,6 @@ bool InspIRCd::IsIdent(const char* n)
 }
 
 
-bool InspIRCd::IsNick(const char* n)
-{
-	if (!n || !*n)
-		return false;
-
-	int p = 0; 
-	for (char* i = (char*)n; *i; i++, p++)
-	{
-		/* "A"-"}" can occur anywhere in a nickname */
-		if ((*i >= 'A') && (*i <= '}'))
-		{
-			continue;
-		}
-		/* "0"-"9", "-" can occur anywhere BUT the first char of a nickname */
-		if ((((*i >= '0') && (*i <= '9')) || (*i == '-')) && (i > n))
-		{
-			continue;
-		}
-		/* invalid character! abort */
-		return false;
-	}
-	return (p < NICKMAX - 1);
-}
-
 int InspIRCd::Run()
 {
 	while (true)
-- 
cgit v1.2.3