Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/sasl_plugins/plain/
H A Dplain.c338 if ((auth_result != SASL_OK) && (auth_result != SASL_INTERACT)) in plain_client_mech_step()
346 if ((user_result != SASL_OK) && (user_result != SASL_INTERACT)) in plain_client_mech_step()
366 if ((user_result == SASL_INTERACT) || (auth_result == SASL_INTERACT) || in plain_client_mech_step()
367 (pass_result == SASL_INTERACT)) { in plain_client_mech_step()
372 user_result == SASL_INTERACT ? in plain_client_mech_step()
377 auth_result == SASL_INTERACT ? in plain_client_mech_step()
382 pass_result == SASL_INTERACT ? in plain_client_mech_step()
390 user_result == SASL_INTERACT ? in plain_client_mech_step()
393 auth_result == SASL_INTERACT ? in plain_client_mech_step()
396 pass_result == SASL_INTERACT ? in plain_client_mech_step()
[all …]
/illumos-gate/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()
/illumos-gate/usr/src/lib/sasl_plugins/cram/
H A Dcram.c634 if ((auth_result != SASL_OK) && (auth_result != SASL_INTERACT)) in crammd5_client_mech_step()
643 if ((pass_result != SASL_OK) && (pass_result != SASL_INTERACT)) in crammd5_client_mech_step()
654 if ((auth_result == SASL_INTERACT) || (pass_result == SASL_INTERACT)) { in crammd5_client_mech_step()
660 auth_result == SASL_INTERACT ? in crammd5_client_mech_step()
664 pass_result == SASL_INTERACT ? in crammd5_client_mech_step()
673 auth_result == SASL_INTERACT ? in crammd5_client_mech_step()
676 pass_result == SASL_INTERACT ? in crammd5_client_mech_step()
683 return SASL_INTERACT; in crammd5_client_mech_step()
/illumos-gate/usr/src/lib/libsasl/lib/
H A Dexternal.c304 if ((user_result != SASL_OK) && (user_result != SASL_INTERACT)) in external_client_mech_step()
315 if (user_result == SASL_INTERACT) { in external_client_mech_step()
320 user_result == SASL_INTERACT ? in external_client_mech_step()
326 user_result == SASL_INTERACT ? in external_client_mech_step()
336 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 Dserver.c1887 && result != SASL_INTERACT) {
1996 && ret != SASL_INTERACT) {
H A Dclient.c703 if (result != SASL_OK && result != SASL_INTERACT)
/illumos-gate/usr/src/lib/sasl_plugins/gssapi/
H A Dgssapi.c1590 (auth_result != SASL_INTERACT)) {
1600 (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;
1661 if (user_result == SASL_INTERACT) {
1665 user_result == SASL_INTERACT ?
[all …]
/illumos-gate/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()
/illumos-gate/usr/src/lib/sasl_plugins/digestmd5/
H A Ddigestmd5.c4680 if ((user_result == SASL_INTERACT) || (auth_result == SASL_INTERACT) ||
4681 (pass_result == SASL_INTERACT) || (realm_result == SASL_INTERACT)) {
4697 user_result == SASL_INTERACT ?
4702 auth_result == SASL_INTERACT ?
4707 pass_result == SASL_INTERACT ?
4713 realm_result == SASL_INTERACT ?
4719 user_result == SASL_INTERACT ?
4722 auth_result == SASL_INTERACT ?
4725 pass_result == SASL_INTERACT ?
4729 realm_result == SASL_INTERACT ?
[all …]
/illumos-gate/usr/src/lib/libsasl/include/
H A Dsasl.h199 #define SASL_INTERACT 2 /* needs user interaction */ macro