Lines Matching refs:authenticated

270 	int authenticated = 0, partial = 0;  in monitor_child_preauth()  local
292 while (!authenticated) { in monitor_child_preauth()
298 authenticated = (monitor_read(ssh, pmonitor, in monitor_child_preauth()
307 if (authenticated && in monitor_child_preauth()
311 authenticated = 0; in monitor_child_preauth()
316 if (authenticated) { in monitor_child_preauth()
322 authenticated = 0; in monitor_child_preauth()
325 if (options.use_pam && authenticated) { in monitor_child_preauth()
333 authenticated = mm_answer_pam_account( in monitor_child_preauth()
340 auth_log(ssh, authenticated, partial, in monitor_child_preauth()
342 if (!partial && !authenticated) in monitor_child_preauth()
344 if (authenticated || partial) { in monitor_child_preauth()
907 int r, authenticated; in mm_answer_authpassword() local
915 authenticated = options.password_authentication && in mm_answer_authpassword()
920 if ((r = sshbuf_put_u32(m, authenticated)) != 0) in mm_answer_authpassword()
927 debug3("%s: sending result %d", __func__, authenticated); in mm_answer_authpassword()
928 debug3_f("sending result %d", authenticated); in mm_answer_authpassword()
938 return (authenticated); in mm_answer_authpassword()
1958 int r, authenticated; in mm_answer_gss_userok() local
1964 authenticated = authctxt->valid && ssh_gssapi_userok(authctxt->user); in mm_answer_gss_userok()
1967 if ((r = sshbuf_put_u32(m, authenticated)) != 0) in mm_answer_gss_userok()
1970 debug3_f("sending result %d", authenticated); in mm_answer_gss_userok()
1979 return (authenticated); in mm_answer_gss_userok()