Home
last modified time | relevance | path

Searched refs:SASL_INTERACT (Results 1 – 11 of 11) sorted by relevance

/titanic_50/usr/src/lib/sasl_plugins/plain/
H A Dplain.c339 if ((auth_result != SASL_OK) && (auth_result != SASL_INTERACT)) in plain_client_mech_step()
347 if ((user_result != SASL_OK) && (user_result != SASL_INTERACT)) in plain_client_mech_step()
356 if ((pass_result != SASL_OK) && (pass_result != SASL_INTERACT)) in plain_client_mech_step()
367 if ((user_result == SASL_INTERACT) || (auth_result == SASL_INTERACT) || in plain_client_mech_step()
368 (pass_result == SASL_INTERACT)) { in plain_client_mech_step()
373 user_result == SASL_INTERACT ? in plain_client_mech_step()
378 auth_result == SASL_INTERACT ? in plain_client_mech_step()
383 pass_result == SASL_INTERACT ? in plain_client_mech_step()
391 user_result == SASL_INTERACT ? in plain_client_mech_step()
394 auth_result == SASL_INTERACT ? in plain_client_mech_step()
[all …]
/titanic_50/usr/src/lib/sasl_plugins/login/
H A Dlogin.c378 if ((auth_result != SASL_OK) && (auth_result != SASL_INTERACT)) in login_client_mech_step()
387 if ((pass_result != SASL_OK) && (pass_result != SASL_INTERACT)) in login_client_mech_step()
398 if ((auth_result == SASL_INTERACT) || (pass_result == SASL_INTERACT)) { in login_client_mech_step()
404 auth_result == SASL_INTERACT ? in login_client_mech_step()
407 pass_result == SASL_INTERACT ? in login_client_mech_step()
414 auth_result == SASL_INTERACT ? in login_client_mech_step()
417 pass_result == SASL_INTERACT ? in login_client_mech_step()
424 return SASL_INTERACT; in login_client_mech_step()
/titanic_50/usr/src/lib/sasl_plugins/cram/
H A Dcram.c635 if ((auth_result != SASL_OK) && (auth_result != SASL_INTERACT)) in crammd5_client_mech_step()
644 if ((pass_result != SASL_OK) && (pass_result != SASL_INTERACT)) in crammd5_client_mech_step()
655 if ((auth_result == SASL_INTERACT) || (pass_result == SASL_INTERACT)) { in crammd5_client_mech_step()
661 auth_result == SASL_INTERACT ? in crammd5_client_mech_step()
665 pass_result == SASL_INTERACT ? in crammd5_client_mech_step()
674 auth_result == SASL_INTERACT ? in crammd5_client_mech_step()
677 pass_result == SASL_INTERACT ? in crammd5_client_mech_step()
684 return SASL_INTERACT; in crammd5_client_mech_step()
/titanic_50/usr/src/lib/libsasl/lib/
H A Dexternal.c305 if ((user_result != SASL_OK) && (user_result != SASL_INTERACT)) in external_client_mech_step()
316 if (user_result == SASL_INTERACT) { in external_client_mech_step()
321 user_result == SASL_INTERACT ? in external_client_mech_step()
327 user_result == SASL_INTERACT ? in external_client_mech_step()
337 return SASL_INTERACT; in external_client_mech_step()
H A Dcommon.c1149 case SASL_INTERACT: s = gettext("needs user interaction"); in sasl_errstring()
1231 case SASL_INTERACT: return "needs user interaction"; in sasl_errstring()
1623 return SASL_INTERACT; in _sasl_getcallback()
1641 return SASL_INTERACT; in _sasl_getcallback()
H A Dclient.c703 if (result != SASL_OK && result != SASL_INTERACT)
H A Dserver.c1887 && result != SASL_INTERACT) {
1996 && ret != SASL_INTERACT) {
/titanic_50/usr/src/lib/sasl_plugins/gssapi/
H A Dgssapi.c1590 (auth_result != SASL_INTERACT)) {
1600 (user_result != SASL_INTERACT)) {
1612 if ((user_result != SASL_OK) && (user_result != SASL_INTERACT)) {
1626 if ((user_result == SASL_INTERACT) ||
1627 (auth_result == SASL_INTERACT)) {
1632 user_result == SASL_INTERACT ?
1636 auth_result == SASL_INTERACT ?
1645 user_result == SASL_INTERACT ?
1648 auth_result == SASL_INTERACT ?
1658 return SASL_INTERACT;
[all …]
/titanic_50/usr/src/lib/libldap5/sources/ldap/common/
H A Dsasl.c558 case SASL_INTERACT: in nsldapi_sasl_cvterrno()
716 if( saslrc == SASL_INTERACT && in nsldapi_sasl_do_bind()
720 } while ( saslrc == SASL_INTERACT ); in nsldapi_sasl_do_bind()
789 if( saslrc == SASL_INTERACT && in nsldapi_sasl_do_bind()
794 } while ( saslrc == SASL_INTERACT ); in nsldapi_sasl_do_bind()
/titanic_50/usr/src/lib/sasl_plugins/digestmd5/
H A Ddigestmd5.c4623 if ((auth_result != SASL_OK) && (auth_result != SASL_INTERACT)) {
4632 if ((user_result != SASL_OK) && (user_result != SASL_INTERACT)) {
4641 if ((pass_result != SASL_OK) && (pass_result != SASL_INTERACT)) {
4663 if ((realm_result != SASL_OK) && (realm_result != SASL_INTERACT)) {
4679 if ((user_result == SASL_INTERACT) || (auth_result == SASL_INTERACT) ||
4680 (pass_result == SASL_INTERACT) || (realm_result == SASL_INTERACT)) {
4683 if ((realm_result == SASL_INTERACT) && params->serverFQDN) {
4696 user_result == SASL_INTERACT ?
4701 auth_result == SASL_INTERACT ?
4706 pass_result == SASL_INTERACT ?
[all …]
/titanic_50/usr/src/lib/libsasl/include/
H A Dsasl.h201 #define SASL_INTERACT 2 /* needs user interaction */ macro