rename next sasl module hook

This commit is contained in:
Alexey Sokolov
2025-02-13 21:36:07 +00:00
parent c8266aafda
commit 4ef64eb4d5
6 changed files with 31 additions and 27 deletions

View File

@@ -1208,8 +1208,8 @@ CModule::EModRet CModule::OnClientSASLAuthenticate(
return CONTINUE;
}
CModule::EModRet CModule::OnSASLServerChallenge(const CString& sMechanism,
CString& sResponse) {
CModule::EModRet CModule::OnClientSASLServerInitialChallenge(
const CString& sMechanism, CString& sResponse) {
return CONTINUE;
}
@@ -1769,9 +1769,9 @@ bool CModules::OnClientSASLAuthenticate(const CString& sMechanism,
sResponse, bAuthenticationSuccess));
}
bool CModules::OnSASLServerChallenge(const CString& sMechanism,
bool CModules::OnClientSASLServerInitialChallenge(const CString& sMechanism,
CString& sResponse) {
MODHALTCHK(OnSASLServerChallenge(sMechanism, sResponse));
MODHALTCHK(OnClientSASLServerInitialChallenge(sMechanism, sResponse));
}
bool CModules::OnClientGetSASLMechanisms(SCString& ssMechanisms) {