From 2907310803a3168582fa0d7ffb5c357e89723434 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 3 Sep 2010 19:28:00 +0200 Subject: s3:rpc_server: make it possible to use rpcint_binding_handle() directly metze --- source3/include/client.h | 3 --- source3/include/proto.h | 6 ++++++ 2 files changed, 6 insertions(+), 3 deletions(-) (limited to 'source3/include') 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, -- cgit