Home
last modified time | relevance | path

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

/dragonfly/crypto/openssh/
H A Dmonitor.c953 int r, authok; in mm_answer_bsdauthrespond() local
962 authok = options.kbd_interactive_authentication && in mm_answer_bsdauthrespond()
965 debug3_f("<%s> = <%d>", response, authok); in mm_answer_bsdauthrespond()
969 if ((r = sshbuf_put_u32(m, authok)) != 0) in mm_answer_bsdauthrespond()
972 debug3_f("sending authenticated: %d", authok); in mm_answer_bsdauthrespond()
978 return (authok != 0); in mm_answer_bsdauthrespond()
H A Dmonitor_wrap.c863 int r, authok; in mm_bsdauth_respond() local
878 if ((r = sshbuf_get_u32(m, &authok)) != 0) in mm_bsdauth_respond()
882 return ((authok == 0) ? -1 : 0); in mm_bsdauth_respond()