From dcdefc17b9840ae8a3175da80070dd27bd81a5c7 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 30 Jul 2009 14:31:55 +0200 Subject: s3:rpc_client: add dispatch_send/recv() to struct rpc_pipe_client metze --- source3/include/client.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'source3/include/client.h') diff --git a/source3/include/client.h b/source3/include/client.h index 6f56468274..203198fed8 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -124,6 +124,17 @@ struct rpc_pipe_client { const struct ndr_interface_table *table, uint32_t opnum, void *r); + struct tevent_req *(*dispatch_send)( + TALLOC_CTX *mem_ctx, + struct tevent_context *ev, + struct rpc_pipe_client *cli, + const struct ndr_interface_table *table, + uint32_t opnum, + void *r); + NTSTATUS (*dispatch_recv)(struct tevent_req *req, + TALLOC_CTX *mem_ctx); + + char *desthost; char *srv_name_slash; -- cgit