diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-01-21 13:40:18 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-01-21 13:40:18 +0100 |
commit | b64b78e4cc2aaed779a07dbcb180323bfb3652d6 (patch) | |
tree | 9d8bf5faf0d16a5379e610119764dc6fbf6b8097 /source3/include | |
parent | 816934faa8bbe53dd299bc5e39f471eafdddefa8 (diff) | |
download | samba-b64b78e4cc2aaed779a07dbcb180323bfb3652d6.tar.gz samba-b64b78e4cc2aaed779a07dbcb180323bfb3652d6.tar.bz2 samba-b64b78e4cc2aaed779a07dbcb180323bfb3652d6.zip |
Allow overriding the function that ships the request in the Samba 3
client code.
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index 587f3f6c67..86b4bee662 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -80,6 +80,11 @@ struct rpc_pipe_client { struct ndr_syntax_id abstract_syntax; struct ndr_syntax_id transfer_syntax; + NTSTATUS (*dispatch) (struct rpc_pipe_client *cli, + TALLOC_CTX *mem_ctx, + const struct ndr_interface_table *table, + uint32_t opnum, void *r); + char *desthost; char *srv_name_slash; |