summaryrefslogtreecommitdiff
path: root/source3/include/client.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-07-30 14:31:55 +0200
committerStefan Metzmacher <metze@samba.org>2009-07-31 12:49:45 +0200
commitdcdefc17b9840ae8a3175da80070dd27bd81a5c7 (patch)
tree4053339eb20b0d0bfefe018d0c2a62a6b42fb695 /source3/include/client.h
parentc3e12444f57e24dcd6c9259537ed0489db4658e9 (diff)
downloadsamba-dcdefc17b9840ae8a3175da80070dd27bd81a5c7.tar.gz
samba-dcdefc17b9840ae8a3175da80070dd27bd81a5c7.tar.bz2
samba-dcdefc17b9840ae8a3175da80070dd27bd81a5c7.zip
s3:rpc_client: add dispatch_send/recv() to struct rpc_pipe_client
metze
Diffstat (limited to 'source3/include/client.h')
-rw-r--r--source3/include/client.h11
1 files changed, 11 insertions, 0 deletions
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;