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

/freebsd-10.0-release/crypto/openssh/
H A Dauth-bsdauth.c94 int authok; local
105 authok = auth_userresponse(authctxt->as, responses[0], 0);
107 debug3("bsdauth_respond: <%s> = <%d>", responses[0], authok);
109 return (authok == 0) ? -1 : 0;
H A Dmonitor_wrap.c987 int authok; local
1000 authok = buffer_get_int(&m);
1003 return ((authok == 0) ? -1 : 0);
1047 int authok; local
1060 authok = buffer_get_int(&m);
1063 return ((authok == 0) ? -1 : 0);
H A Dmonitor.c937 int authok; local
943 authok = options.challenge_response_authentication &&
946 debug3("%s: <%s> = <%d>", __func__, response, authok);
950 buffer_put_int(m, authok);
952 debug3("%s: sending authenticated: %d", __func__, authok);
961 return (authok != 0);
991 int authok; local
995 authok = (options.challenge_response_authentication &&
1003 buffer_put_int(m, authok);
1005 debug3("%s: sending authenticated: %d", __func__, authok);
[all...]

Completed in 72 milliseconds