From 611357aee31ad58632a2b029a91d950a2cffb341 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 30 Aug 2010 13:44:41 +0200 Subject: [PATCH] s4:lib/messaging: add irpc_binding_handle_by_name() helper function metze --- source4/lib/messaging/irpc.h | 4 ++++ source4/lib/messaging/messaging.c | 32 +++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/source4/lib/messaging/irpc.h b/source4/lib/messaging/irpc.h index 158b9cb3ec5..88f142ee1eb 100644 --- a/source4/lib/messaging/irpc.h +++ b/source4/lib/messaging/irpc.h @@ -102,6 +102,10 @@ struct dcerpc_binding_handle *irpc_binding_handle(TALLOC_CTX *mem_ctx, struct messaging_context *msg_ctx, struct server_id server_id, const struct ndr_interface_table *table); +struct dcerpc_binding_handle *irpc_binding_handle_by_name(TALLOC_CTX *mem_ctx, + struct messaging_context *msg_ctx, + const char *dest_task, + const struct ndr_interface_table *table); NTSTATUS irpc_add_name(struct messaging_context *msg_ctx, const char *name); struct server_id *irpc_servers_byname(struct messaging_context *msg_ctx, TALLOC_CTX *mem_ctx, const char *name); diff --git a/source4/lib/messaging/messaging.c b/source4/lib/messaging/messaging.c index 67b8401bf57..f460d676cd3 100644 --- a/source4/lib/messaging/messaging.c +++ b/source4/lib/messaging/messaging.c @@ -1401,3 +1401,35 @@ struct dcerpc_binding_handle *irpc_binding_handle(TALLOC_CTX *mem_ctx, return h; } + +struct dcerpc_binding_handle *irpc_binding_handle_by_name(TALLOC_CTX *mem_ctx, + struct messaging_context *msg_ctx, + const char *dest_task, + const struct ndr_interface_table *table) +{ + struct dcerpc_binding_handle *h; + struct server_id *sids; + struct server_id sid; + + /* find the server task */ + sids = irpc_servers_byname(msg_ctx, mem_ctx, dest_task); + if (sids == NULL) { + errno = EADDRNOTAVAIL; + return NULL; + } + if (sids[0].id == 0) { + talloc_free(sids); + errno = EADDRNOTAVAIL; + return NULL; + } + sid = sids[0]; + talloc_free(sids); + + h = irpc_binding_handle(mem_ctx, msg_ctx, + sid, table); + if (h == NULL) { + return NULL; + } + + return h; +} -- 2.34.1