mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
Remove unused async_req references from wb_reqtrans.c
This commit is contained in:
parent
05b49fd4c8
commit
8a2b7b3e56
@ -33,9 +33,7 @@ wbcErr wb_trans_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
|
||||
struct wb_context *wb_context_init(TALLOC_CTX *mem_ctx);
|
||||
|
||||
/* Definitions from wb_reqtrans.c */
|
||||
bool async_req_is_wbcerr(struct async_req *req, wbcErr *pwbc_err);
|
||||
wbcErr map_wbc_err_from_errno(int error);
|
||||
wbcErr async_req_simple_recv_wbcerr(struct async_req *req);
|
||||
|
||||
bool tevent_req_is_wbcerr(struct tevent_req *req, wbcErr *pwbc_err);
|
||||
wbcErr tevent_req_simple_recv_wbcerr(struct tevent_req *req);
|
||||
|
@ -25,32 +25,6 @@
|
||||
#undef DBGC_CLASS
|
||||
#define DBGC_CLASS DBGC_WINBIND
|
||||
|
||||
bool async_req_is_wbcerr(struct async_req *req, wbcErr *pwbc_err)
|
||||
{
|
||||
enum async_req_state state;
|
||||
uint64_t error;
|
||||
if (!async_req_is_error(req, &state, &error)) {
|
||||
*pwbc_err = WBC_ERR_SUCCESS;
|
||||
return false;
|
||||
}
|
||||
|
||||
switch (state) {
|
||||
case ASYNC_REQ_USER_ERROR:
|
||||
*pwbc_err = error;
|
||||
break;
|
||||
case ASYNC_REQ_TIMED_OUT:
|
||||
*pwbc_err = WBC_ERR_UNKNOWN_FAILURE;
|
||||
break;
|
||||
case ASYNC_REQ_NO_MEMORY:
|
||||
*pwbc_err = WBC_ERR_NO_MEMORY;
|
||||
break;
|
||||
default:
|
||||
*pwbc_err = WBC_ERR_UNKNOWN_FAILURE;
|
||||
break;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
wbcErr map_wbc_err_from_errno(int error)
|
||||
{
|
||||
switch(error) {
|
||||
@ -65,17 +39,6 @@ wbcErr map_wbc_err_from_errno(int error)
|
||||
}
|
||||
}
|
||||
|
||||
wbcErr async_req_simple_recv_wbcerr(struct async_req *req)
|
||||
{
|
||||
wbcErr wbc_err;
|
||||
|
||||
if (async_req_is_wbcerr(req, &wbc_err)) {
|
||||
return wbc_err;
|
||||
}
|
||||
|
||||
return WBC_ERR_SUCCESS;
|
||||
}
|
||||
|
||||
bool tevent_req_is_wbcerr(struct tevent_req *req, wbcErr *pwbc_err)
|
||||
{
|
||||
enum tevent_req_state state;
|
||||
|
Loading…
Reference in New Issue
Block a user