Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A 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()
H A Dmonitor.c980 int r, authok; in mm_answer_bsdauthrespond() local
989 authok = options.kbd_interactive_authentication && in mm_answer_bsdauthrespond()
992 debug3_f("<%s> = <%d>", response, authok); in mm_answer_bsdauthrespond()
996 if ((r = sshbuf_put_u32(m, authok)) != 0) in mm_answer_bsdauthrespond()
999 debug3_f("sending authenticated: %d", authok); in mm_answer_bsdauthrespond()
1005 return (authok != 0); in mm_answer_bsdauthrespond()
H A Dmonitor_wrap.c918 int r, authok; in mm_bsdauth_respond() local
933 if ((r = sshbuf_get_u32(m, &authok)) != 0) in mm_bsdauth_respond()
937 return ((authok == 0) ? -1 : 0); in mm_bsdauth_respond()