Home
last modified time | relevance | path

Searched refs:m_chosen_auth_mech (Results 1 – 3 of 3) sorted by relevance

/dports/games/minetest/minetest-5.4.1/src/network/
H A Dclientpackethandler.cpp90 if (m_chosen_auth_mech != AUTH_MECHANISM_NONE) { in handleCommand_Hello()
93 << "(chosen_mech=" << m_chosen_auth_mech << ")." << std::endl; in handleCommand_Hello()
94 if (m_chosen_auth_mech == AUTH_MECHANISM_SRP || in handleCommand_Hello()
95 m_chosen_auth_mech == AUTH_MECHANISM_LEGACY_PASSWORD) { in handleCommand_Hello()
112 m_chosen_auth_mech = AUTH_MECHANISM_NONE; in handleCommand_Hello()
165 m_chosen_auth_mech = AUTH_MECHANISM_NONE; in handleCommand_AcceptSudoMode()
1418 if (m_chosen_auth_mech != AUTH_MECHANISM_SRP && in handleCommand_SrpBytesSandB()
1419 m_chosen_auth_mech != AUTH_MECHANISM_LEGACY_PASSWORD) { in handleCommand_SrpBytesSandB()
1422 << m_chosen_auth_mech << ")." << std::endl; in handleCommand_SrpBytesSandB()
/dports/games/minetest/minetest-5.4.1/src/client/
H A Dclient.cpp120 m_chosen_auth_mech(AUTH_MECHANISM_NONE), in Client()
980 switch (m_chosen_auth_mech) { in deleteAuthData()
991 m_chosen_auth_mech = AUTH_MECHANISM_NONE; in deleteAuthData()
1025 m_chosen_auth_mech = chosen_auth_mechanism; in promptConfirmRegistration()
1032 startAuth(m_chosen_auth_mech); in confirmRegistration()
1037 m_chosen_auth_mech = chosen_auth_mechanism; in startAuth()
H A Dclient.h521 AuthMechanism m_chosen_auth_mech; variable