diff options
Diffstat (limited to 'source3/include/client.h')
-rw-r--r-- | source3/include/client.h | 11 |
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; |