summaryrefslogtreecommitdiff
path: root/src/helperfuncs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/helperfuncs.cpp')
-rw-r--r--src/helperfuncs.cpp21
1 files changed, 3 insertions, 18 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp
index c2a323a7c..2ff939dc6 100644
--- a/src/helperfuncs.cpp
+++ b/src/helperfuncs.cpp
@@ -1153,33 +1153,18 @@ int usercount(chanrec *c)
// looks up a users password for their connection class (<ALLOW>/<DENY> tags)
-char* Passwd(userrec *user)
+ConnectClass* GetClass(userrec *user)
{
for (ClassVector::iterator i = Config->Classes.begin(); i != Config->Classes.end(); i++)
{
- if ((i->type == CC_ALLOW) && match(user->host,i->host.c_str()))
+ if (match(user->host,i->host.c_str()))
{
- return (char*)i->pass.c_str();
+ return (ConnectClass*)i->second;
}
}
return "";
}
-bool IsDenied(userrec *user)
-{
- for (ClassVector::iterator i = Config->Classes.begin(); i != Config->Classes.end(); i++)
- {
- if ((i->type == CC_DENY) && match(user->host,i->host.c_str()))
- {
- return true;
- }
- }
- return false;
-}
-
-
-
-
/* sends out an error notice to all connected clients (not to be used
* lightly!) */