HomeSort by relevance Sort by last modified time
    Searched refs:authok (Results 1 - 3 of 3) sorted by null

  /external/openssh/
auth-bsdauth.c 101 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;
monitor.c 896 int authok; local
904 authok = options.challenge_response_authentication &&
907 debug3("%s: <%s> = <%d>", __func__, response, authok);
911 buffer_put_int(m, authok);
913 debug3("%s: sending authenticated: %d", __func__, authok);
919 return (authok != 0);
949 int authok; local
953 authok = (options.challenge_response_authentication &&
961 buffer_put_int(m, authok);
963 debug3("%s: sending authenticated: %d", __func__, authok);
    [all...]
monitor_wrap.c 750 int authok; local
763 authok = buffer_get_int(&m);
766 return ((authok == 0) ? -1 : 0);
810 int authok; local
823 authok = buffer_get_int(&m);
826 return ((authok == 0) ? -1 : 0);

Completed in 1452 milliseconds