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

/freebsd-10.3-release/crypto/openssh/
H A Dauth-bsdauth.c101 int authok; local
112 authok = auth_userresponse(authctxt->as, responses[0], 0);
114 debug3("bsdauth_respond: <%s> = <%d>", responses[0], authok);
116 return (authok == 0) ? -1 : 0;
H A Dmonitor.c968 int authok; local
974 authok = options.challenge_response_authentication &&
977 debug3("%s: <%s> = <%d>", __func__, response, authok);
981 buffer_put_int(m, authok);
983 debug3("%s: sending authenticated: %d", __func__, authok);
992 return (authok != 0);
1022 int authok; local
1026 authok = (options.challenge_response_authentication &&
1034 buffer_put_int(m, authok);
1036 debug3("%s: sending authenticated: %d", __func__, authok);
[all...]
H A Dmonitor_wrap.c780 int authok; local
793 authok = buffer_get_int(&m);
796 return ((authok == 0) ? -1 : 0);
840 int authok; local
853 authok = buffer_get_int(&m);
856 return ((authok == 0) ? -1 : 0);

Completed in 112 milliseconds