Lines Matching refs:method

166 	if (authctxt->method->method_data != NULL) {  in auth2_challenge()
168 authctxt->method->abandoned = 0; in auth2_challenge()
170 authctxt->method->method_data = (void *) kbdint_alloc(devs); in auth2_challenge()
180 if (authctxt->method->method_data != NULL) { in auth2_challenge_stop()
181 kbdint_free((KbdintAuthctxt *) authctxt->method->method_data); in auth2_challenge_stop()
182 authctxt->method->method_data = NULL; in auth2_challenge_stop()
190 authctxt->method->abandoned = 1; in auth2_challenge_abandon()
191 authctxt->method->postponed = 0; in auth2_challenge_abandon()
192 authctxt->method->authenticated = 0; in auth2_challenge_abandon()
193 authctxt->method->abandons++; in auth2_challenge_abandon()
194 authctxt->method->attempts++; in auth2_challenge_abandon()
202 authctxt->method->method_data; in auth2_challenge_start()
225 authctxt->method->postponed = 1; in auth2_challenge_start()
236 kbdintctxt = (KbdintAuthctxt *) authctxt->method->method_data; in send_userauth_info_request()
269 char **response = NULL, *method; in input_userauth_info_response() local
273 kbdintctxt = (KbdintAuthctxt *) authctxt->method->method_data; in input_userauth_info_response()
305 authctxt->method->postponed = 0; /* reset */ in input_userauth_info_response()
309 authctxt->method->authenticated = 1; in input_userauth_info_response()
314 authctxt->method->postponed = 1; in input_userauth_info_response()
325 method = xmalloc(len); in input_userauth_info_response()
326 snprintf(method, len, "keyboard-interactive/%s", in input_userauth_info_response()
329 if (authctxt->method->authenticated || authctxt->method->abandoned) { in input_userauth_info_response()
336 userauth_finish(authctxt, method); in input_userauth_info_response()
337 xfree(method); in input_userauth_info_response()