Home | History | Annotate | Download | only in openssh

Lines Matching refs:authenticated

355 	int authenticated = 0;
381 while (!authenticated) {
383 authenticated = (monitor_read(pmonitor, mon_dispatch, &ent) == 1);
384 if (authenticated) {
390 authenticated = 0;
393 if (options.use_pam && authenticated) {
399 authenticated = mm_answer_pam_account(pmonitor->m_sendfd, &m);
406 auth_log(authctxt, authenticated, auth_method,
408 if (!authenticated)
427 fatal("%s: authenticated invalid user", __func__);
431 debug("%s: %s has been authenticated by privileged process",
846 int authenticated;
853 authenticated = options.password_authentication &&
856 authenticated = 0;
862 buffer_put_int(m, authenticated);
864 debug3("%s: sending result %d", __func__, authenticated);
873 /* Causes monitor loop to terminate if authenticated */
874 return (authenticated);
927 debug3("%s: sending authenticated: %d", __func__, authok);
976 debug3("%s: sending authenticated: %d", __func__, authok);
2097 int authenticated;
2099 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user);
2102 buffer_put_int(m, authenticated);
2104 debug3("%s: sending result %d", __func__, authenticated);
2109 /* Monitor loop will terminate if authenticated */
2110 return (authenticated);
2283 int authenticated = 0;
2293 authenticated = jpake_check_confirm(pctx->k,
2304 buffer_put_int(m, authenticated);
2306 debug3("%s: sending result %d", __func__, authenticated);
2312 return authenticated;