Home
last modified time | relevance | path

Searched refs:reply_code (Results 1 – 5 of 5) sorted by relevance

/src/crypto/krb5/src/lib/krb5/krb/ !
H A Dget_creds.c237 krb5_error_code reply_code; /* Error status from TGS reply */ member
410 ctx->reply_code = code; in get_creds_from_tgs_reply()
484 if (ctx->reply_code) in step_non_referral()
485 return ctx->reply_code; in step_non_referral()
510 return ctx->reply_code; in try_fallback()
569 if (ctx->reply_code != 0) in step_referrals()
687 if (ctx->reply_code != 0) in step_get_tgt_offpath()
688 return ctx->reply_code; in step_get_tgt_offpath()
923 if (ctx->reply_code != 0) { in step_get_tgt()
930 return ctx->reply_code; in step_get_tgt()
H A Dget_in_tkt.c1675 uint32_t reply_code; in init_creds_step_reply() local
1701 reply_code = ctx->err_reply->error; in init_creds_step_reply()
1709 } else if (!ctx->restarted && reply_code == KDC_ERR_PREAUTH_FAILED && in init_creds_step_reply()
1716 } else if (reply_code == KDC_ERR_PREAUTH_EXPIRED) { in init_creds_step_reply()
1722 (reply_code == KDC_ERR_PREAUTH_REQUIRED || in init_creds_step_reply()
1723 reply_code == KDC_ERR_KEY_EXP)) { in init_creds_step_reply()
1727 } else if (reply_code == KDC_ERR_PREAUTH_REQUIRED && retry) { in init_creds_step_reply()
1731 } else if (reply_code == KDC_ERR_PREAUTH_FAILED && retry) { in init_creds_step_reply()
1742 } else if (reply_code == KDC_ERR_MORE_PREAUTH_DATA_REQUIRED && retry) { in init_creds_step_reply()
1764 code = (krb5_error_code)reply_code + ERROR_TABLE_BASE_krb5; in init_creds_step_reply()
/src/contrib/wpa/src/wps/ !
H A Dhttp_client.c57 int reply_code = httpread_reply_code_get(c->hread); in http_client_got_response() local
58 if (reply_code == 200 /* OK */) { in http_client_got_response()
66 "%s:%d", reply_code, in http_client_got_response()
H A Dhttpread.c67 int reply_code; /* for type REPLY, e.g. 200 for HTTP/1.1 200 OK */ member
221 h->reply_code = atol(hbp); in httpread_hdr_analyze()
328 if (h->reply_code != 200) in httpread_hdr_analyze()
789 return h->reply_code; in httpread_reply_code_get()
/src/crypto/heimdal/appl/ftp/ftp/ !
H A Dftp.c333 int reply_code; in getreply() local
343 reply_code = 0; in getreply()
391 if(code != 0 && reply_code == 0) in getreply()
392 reply_code = code; in getreply()
395 if (code == reply_code && buf[3] == ' ') { in getreply()