diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-09-03 19:28:00 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-09-04 09:01:10 +0200 |
commit | 2907310803a3168582fa0d7ffb5c357e89723434 (patch) | |
tree | 63351ea8c4abd55885b9a2d943f41e445046500f /source3/include | |
parent | 389d35708ea910e68468648396f405e52907c749 (diff) | |
download | samba-2907310803a3168582fa0d7ffb5c357e89723434.tar.gz samba-2907310803a3168582fa0d7ffb5c357e89723434.tar.bz2 samba-2907310803a3168582fa0d7ffb5c357e89723434.zip |
s3:rpc_server: make it possible to use rpcint_binding_handle() directly
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 3 | ||||
-rw-r--r-- | source3/include/proto.h | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index 326931c95f..03d4c85583 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -125,9 +125,6 @@ struct rpc_pipe_client { /* The following is only non-null on a netlogon client pipe. */ struct netlogon_creds_CredentialState *dc; - - /* Used by internal rpc_pipe_client */ - struct pipes_struct *pipes_struct; }; /* Transport encryption state. */ diff --git a/source3/include/proto.h b/source3/include/proto.h index 180e1c03bd..2f82e70f5f 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -4169,6 +4169,12 @@ struct pipes_struct *make_internal_rpc_pipe_p(TALLOC_CTX *mem_ctx, struct client_address *client_id, struct auth_serversupplied_info *server_info, struct messaging_context *msg_ctx); +NTSTATUS rpcint_binding_handle(TALLOC_CTX *mem_ctx, + const struct ndr_interface_table *ndr_table, + struct client_address *client_id, + struct auth_serversupplied_info *server_info, + struct messaging_context *msg_ctx, + struct dcerpc_binding_handle **binding_handle); NTSTATUS rpc_pipe_open_internal(TALLOC_CTX *mem_ctx, const struct ndr_syntax_id *abstract_syntax, struct auth_serversupplied_info *serversupplied_info, |