Added hostname checking

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1188 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
brain 2005-04-25 17:26:44 +00:00
parent 5bc207b17b
commit 0bdaca54ee
2 changed files with 4 additions and 2 deletions

View File

@ -12,6 +12,7 @@ CREATE TABLE ircd_opers (
id bigint(20) NOT NULL auto_increment,
username text,
password text,
hostname text,
type text,
PRIMARY KEY (id)
) TYPE=MyISAM;

View File

@ -115,7 +115,7 @@ class ModuleSQLOper : public Module
username = temp;
// Create a request containing the SQL query and send it to m_sql.so
SQLRequest* query = new SQLRequest(SQL_RESULT,dbid,"SELECT username,password,type FROM ircd_opers WHERE username='"+username+"' AND password=md5('"+password+"')");
SQLRequest* query = new SQLRequest(SQL_RESULT,dbid,"SELECT username,password,hostname,type FROM ircd_opers WHERE username='"+username+"' AND password=md5('"+password+"')");
Request queryrequest((char*)query, this, SQLModule);
SQLResult* result = (SQLResult*)queryrequest.Send();
@ -139,7 +139,8 @@ class ModuleSQLOper : public Module
for (int j =0; j < Conf->Enumerate("type"); j++)
{
std::string TypeName = Conf->ReadValue("type","name",j);
if (TypeName == rowresult->GetField("type"))
std::string pattern = std::string(user->ident) + "@" + std::string(user->host);
if ((TypeName == rowresult->GetField("type")) && (Srv->MatchText(pattern,rowresult->GetField("hostname"))));
{
/* found this oper's opertype */
Srv->MeshSendAll("| "+std::string(user->nick)+" "+TypeName);