summaryrefslogtreecommitdiff
path: root/source3/librpc/rpc/dcerpc_ep.h
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2010-09-16 10:48:33 +0200
committerAndreas Schneider <asn@cryptomilk.org>2011-02-02 12:44:20 +0100
commit31779662b728fa6cefd21df742273fd31d8d8dfb (patch)
treeab09aee0ddc1d8609bae2aea651bc42a0fb3911e /source3/librpc/rpc/dcerpc_ep.h
parent20afe971777811c8e645a4d37b5159cd8300d3a8 (diff)
downloadsamba-31779662b728fa6cefd21df742273fd31d8d8dfb.tar.gz
samba-31779662b728fa6cefd21df742273fd31d8d8dfb.tar.bz2
samba-31779662b728fa6cefd21df742273fd31d8d8dfb.zip
s3-librpc: Added dcerpc_binding_vector_create function.
Diffstat (limited to 'source3/librpc/rpc/dcerpc_ep.h')
-rw-r--r--source3/librpc/rpc/dcerpc_ep.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/librpc/rpc/dcerpc_ep.h b/source3/librpc/rpc/dcerpc_ep.h
index 59873676c8..6da7f9b9b2 100644
--- a/source3/librpc/rpc/dcerpc_ep.h
+++ b/source3/librpc/rpc/dcerpc_ep.h
@@ -25,6 +25,10 @@ struct dcerpc_binding_vector {
uint32_t count;
};
+NTSTATUS dcerpc_binding_vector_create(TALLOC_CTX *mem_ctx,
+ const struct ndr_interface_table *iface,
+ struct dcerpc_binding_vector **pbvec);
+
/**
* @brief Adds server address information in the local endpoint map.
*
@@ -61,4 +65,8 @@ NTSTATUS dcerpc_ep_register_noreplace(const struct ndr_interface_table *iface,
const struct GUID *object_guid,
const char *annotation);
+NTSTATUS dcerpc_ep_unregister(const struct ndr_interface_table *iface,
+ const struct dcerpc_binding_vector *bind_vec,
+ const struct GUID *object_guid);
+
#endif /* _DCERPC_EP_H_ */