mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-24 09:59:02 -04:00
Patch from nenolod
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9166 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
6b7eb8136b
commit
1428fd4f61
@ -36,7 +36,7 @@ class SaslAuthenticator
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
SaslAuthenticator(User *user, std::string method, InspIRCd *instance, Module *ctor)
|
SaslAuthenticator(User *user, std::string method, InspIRCd *instance, Module *ctor)
|
||||||
: ServerInstance(instance), Creator(ctor), user(user)
|
: ServerInstance(instance), Creator(ctor), user(user), state(SASL_INIT)
|
||||||
{
|
{
|
||||||
this->user->Extend("sasl_authenticator", this);
|
this->user->Extend("sasl_authenticator", this);
|
||||||
|
|
||||||
@ -86,6 +86,8 @@ class SaslAuthenticator
|
|||||||
this->AnnounceState();
|
this->AnnounceState();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
case SASL_DONE:
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ServerInstance->Logs->Log("m_sasl", DEFAULT, "WTF: SaslState is not a known state (%d)", this->state);
|
ServerInstance->Logs->Log("m_sasl", DEFAULT, "WTF: SaslState is not a known state (%d)", this->state);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user