1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 04:23:13 +02:00

Removed some unneeded/unused code from m_ldap

This commit is contained in:
Adam
2011-03-31 14:41:30 -04:00
parent 8dec0c1f17
commit faa85564fc
3 changed files with 3 additions and 9 deletions
+2 -6
View File
@@ -10,8 +10,6 @@ class LDAPService : public LDAPProvider, public Thread, public Condition
{
Anope::string server;
int port;
Anope::string binddn;
Anope::string password;
LDAP *con;
@@ -21,7 +19,7 @@ class LDAPService : public LDAPProvider, public Thread, public Condition
query_queue queries;
result_queue results;
LDAPService(Module *o, const Anope::string &n, const Anope::string &s, int po, const Anope::string &b, const Anope::string &p) : LDAPProvider(o, "ldap/" + n), server(s), port(po), binddn(b), password(p)
LDAPService(Module *o, const Anope::string &n, const Anope::string &s, int po) : LDAPProvider(o, "ldap/" + n), server(s), port(po)
{
if (ldap_initialize(&this->con, this->server.c_str()) != LDAP_SUCCESS)
throw LDAPException("Unable to connect to LDAP service " + this->name + ": " + Anope::LastError());
@@ -264,12 +262,10 @@ class ModuleLDAP : public Module, public Pipe
{
Anope::string server = config.ReadValue("ldap", "server", "127.0.0.1", i);
int port = config.ReadInteger("ldap", "port", "389", i, true);
Anope::string binddn = config.ReadValue("ldap", "binddn", "", i);
Anope::string password = config.ReadValue("ldap", "password", "", i);
try
{
LDAPService *ss = new LDAPService(this, connname, server, port, binddn, password);
LDAPService *ss = new LDAPService(this, connname, server, port);
this->LDAPServices.insert(std::make_pair(connname, ss));
ModuleManager::RegisterService(ss);