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

/external/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.c912 int authok; local
918 authok = options.challenge_response_authentication &&
921 debug3("%s: <%s> = <%d>", __func__, response, authok);
925 buffer_put_int(m, authok);
927 debug3("%s: sending authenticated: %d", __func__, authok);
932 return (authok != 0);
962 int authok; local
966 authok = (options.challenge_response_authentication &&
974 buffer_put_int(m, authok);
976 debug3("%s: sending authenticated: %d", __func__, authok);
[all...]
H A Dmonitor_wrap.c986 int authok; local
999 authok = buffer_get_int(&m);
1002 return ((authok == 0) ? -1 : 0);
1046 int authok; local
1059 authok = buffer_get_int(&m);
1062 return ((authok == 0) ? -1 : 0);

Completed in 99 milliseconds