diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-08-06 11:30:51 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-08-12 14:31:21 +0200 |
commit | 2c0e296dd74c1b064d836f6807a808231f8998d4 (patch) | |
tree | cc8f164c74a5d73b4eef4456cb368048162058fd /source3/include | |
parent | b34209006fd75533b22e77c77d8fde3e4cb1506a (diff) | |
download | samba-2c0e296dd74c1b064d836f6807a808231f8998d4.tar.gz samba-2c0e296dd74c1b064d836f6807a808231f8998d4.tar.bz2 samba-2c0e296dd74c1b064d836f6807a808231f8998d4.zip |
s3:rpc_client: add dcerpc_binding_handle backend
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index 505f7e4d3c..c702996b8b 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -104,10 +104,13 @@ struct rpc_cli_transport { void *priv; }; +struct dcerpc_binding_handle; + struct rpc_pipe_client { struct rpc_pipe_client *prev, *next; struct rpc_cli_transport *transport; + struct dcerpc_binding_handle *binding_handle; struct ndr_syntax_id abstract_syntax; struct ndr_syntax_id transfer_syntax; |