Home
last modified time | relevance | path

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

/external/openssh/
Dauth-bsdauth.c99 int authok; in bsdauth_respond() local
110 authok = auth_userresponse(authctxt->as, responses[0], 0); in bsdauth_respond()
112 debug3("bsdauth_respond: <%s> = <%d>", responses[0], authok); in bsdauth_respond()
114 return (authok == 0) ? -1 : 0; in bsdauth_respond()
Dmonitor.c965 int r, authok; in mm_answer_bsdauthrespond() local
974 authok = options.challenge_response_authentication && in mm_answer_bsdauthrespond()
977 debug3("%s: <%s> = <%d>", __func__, response, authok); in mm_answer_bsdauthrespond()
981 if ((r = sshbuf_put_u32(m, authok)) != 0) in mm_answer_bsdauthrespond()
984 debug3("%s: sending authenticated: %d", __func__, authok); in mm_answer_bsdauthrespond()
990 return (authok != 0); in mm_answer_bsdauthrespond()
Dmonitor_wrap.c857 int r, authok; in mm_bsdauth_respond() local
872 if ((r = sshbuf_get_u32(m, &authok)) != 0) in mm_bsdauth_respond()
876 return ((authok == 0) ? -1 : 0); in mm_bsdauth_respond()