summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-03-08 11:33:03 +0100
committerVolker Lendecke <vl@samba.org>2009-03-08 12:52:58 +0100
commiteb177592b5ab5042719be53df717df91f8cfb6aa (patch)
tree35f1aef420b84ff1733398244b5a80c1b6cbba93 /source3/lib
parentc7df04633969f3d50214fcc5916ed695208b9bf2 (diff)
downloadsamba-eb177592b5ab5042719be53df717df91f8cfb6aa.tar.gz
samba-eb177592b5ab5042719be53df717df91f8cfb6aa.tar.bz2
samba-eb177592b5ab5042719be53df717df91f8cfb6aa.zip
Add parameter "queue" to wb_int_trans_send
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/wbclient.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/source3/lib/wbclient.c b/source3/lib/wbclient.c
index d299914c73..10ee4ff205 100644
--- a/source3/lib/wbclient.c
+++ b/source3/lib/wbclient.c
@@ -298,7 +298,8 @@ static void wb_int_trans_write_done(struct tevent_req *subreq);
static void wb_int_trans_read_done(struct tevent_req *subreq);
static struct async_req *wb_int_trans_send(TALLOC_CTX *mem_ctx,
- struct tevent_context *ev, int fd,
+ struct tevent_context *ev,
+ struct tevent_queue *queue, int fd,
struct winbindd_request *wb_req)
{
struct async_req *result;
@@ -325,7 +326,7 @@ static struct async_req *wb_int_trans_send(TALLOC_CTX *mem_ctx,
state->wb_req->length = sizeof(struct winbindd_request);
state->wb_req->pid = getpid();
- subreq = wb_req_write_send(state, state->ev, NULL, state->fd,
+ subreq = wb_req_write_send(state, state->ev, queue, state->fd,
state->wb_req);
if (subreq == NULL) {
goto fail;
@@ -476,7 +477,7 @@ static void wb_open_pipe_connect_nonpriv_done(struct async_req *subreq)
ZERO_STRUCT(state->wb_req);
state->wb_req.cmd = WINBINDD_INTERFACE_VERSION;
- subreq = wb_int_trans_send(state, state->ev, state->wb_ctx->fd,
+ subreq = wb_int_trans_send(state, state->ev, NULL, state->wb_ctx->fd,
&state->wb_req);
if (async_req_nomem(subreq, req)) {
return;
@@ -509,7 +510,7 @@ static void wb_open_pipe_ping_done(struct async_req *subreq)
state->wb_req.cmd = WINBINDD_PRIV_PIPE_DIR;
- subreq = wb_int_trans_send(state, state->ev, state->wb_ctx->fd,
+ subreq = wb_int_trans_send(state, state->ev, NULL, state->wb_ctx->fd,
&state->wb_req);
if (async_req_nomem(subreq, req)) {
return;
@@ -605,7 +606,7 @@ static void wb_trigger_trans(struct async_req *req)
return;
}
- subreq = wb_int_trans_send(state, state->ev, state->wb_ctx->fd,
+ subreq = wb_int_trans_send(state, state->ev, NULL, state->wb_ctx->fd,
state->wb_req);
if (async_req_nomem(subreq, req)) {
return;
@@ -727,7 +728,7 @@ static void wb_trans_connect_done(struct async_req *subreq)
return;
}
- subreq = wb_int_trans_send(state, state->ev, state->wb_ctx->fd,
+ subreq = wb_int_trans_send(state, state->ev, NULL, state->wb_ctx->fd,
state->wb_req);
if (async_req_nomem(subreq, req)) {
return;