summaryrefslogtreecommitdiff
path: root/source3/librpc/rpc/dcerpc_ep.h
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2011-07-08 11:34:24 +0200
committerAndreas Schneider <asn@samba.org>2011-07-14 16:10:47 +0200
commitc69f2c4de992104e83a6e945835c47e5b919c04d (patch)
tree94393d3ec8c7765bd35a8ed569d73c80d55c08a5 /source3/librpc/rpc/dcerpc_ep.h
parent8b085c02eba4beeb38c1d4ca9635e830a7658ea8 (diff)
downloadsamba-c69f2c4de992104e83a6e945835c47e5b919c04d.tar.gz
samba-c69f2c4de992104e83a6e945835c47e5b919c04d.tar.bz2
samba-c69f2c4de992104e83a6e945835c47e5b919c04d.zip
s3-librpc: Pass messaging context to dcerpc register functions.
Diffstat (limited to 'source3/librpc/rpc/dcerpc_ep.h')
-rw-r--r--source3/librpc/rpc/dcerpc_ep.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/librpc/rpc/dcerpc_ep.h b/source3/librpc/rpc/dcerpc_ep.h
index 57b1d27440..226d402986 100644
--- a/source3/librpc/rpc/dcerpc_ep.h
+++ b/source3/librpc/rpc/dcerpc_ep.h
@@ -64,6 +64,7 @@ NTSTATUS dcerpc_binding_vector_create(TALLOC_CTX *mem_ctx,
* @return An NTSTATUS error code.
*/
NTSTATUS dcerpc_ep_register(TALLOC_CTX *mem_ctx,
+ struct messaging_context *msg_ctx,
const struct ndr_interface_table *iface,
const struct dcerpc_binding_vector *bind_vec,
const struct GUID *object_guid,
@@ -71,13 +72,15 @@ NTSTATUS dcerpc_ep_register(TALLOC_CTX *mem_ctx,
struct dcerpc_binding_handle **ph);
NTSTATUS dcerpc_ep_register_noreplace(TALLOC_CTX *mem_ctx,
+ struct messaging_context *msg_ctx,
const struct ndr_interface_table *iface,
const struct dcerpc_binding_vector *bind_vec,
const struct GUID *object_guid,
const char *annotation,
struct dcerpc_binding_handle **ph);
-NTSTATUS dcerpc_ep_unregister(const struct ndr_interface_table *iface,
+NTSTATUS dcerpc_ep_unregister(struct messaging_context *msg_ctx,
+ const struct ndr_interface_table *iface,
const struct dcerpc_binding_vector *bind_vec,
const struct GUID *object_guid);