summaryrefslogtreecommitdiff
path: root/source4/lib/messaging/messaging.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-07-10 01:08:10 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:19:29 -0500
commitc6881d1e650fd284a366af76f5a214a5de05cc0c (patch)
treeb41216f1b76579b9f0d455825bc8b55ff549e8d7 /source4/lib/messaging/messaging.c
parent001dc40ecd76bb7ea0e3d2a043bab42c9ba7c780 (diff)
downloadsamba-c6881d1e650fd284a366af76f5a214a5de05cc0c.tar.gz
samba-c6881d1e650fd284a366af76f5a214a5de05cc0c.tar.bz2
samba-c6881d1e650fd284a366af76f5a214a5de05cc0c.zip
r8272: added the hooks for adding a name to a messaging context, so we will
be able to send a message to the "ldap_server" task without having to know its task ID. (This used to be commit 8f69867867857e0c9a9246c2dec9612ccc234724)
Diffstat (limited to 'source4/lib/messaging/messaging.c')
-rw-r--r--source4/lib/messaging/messaging.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/source4/lib/messaging/messaging.c b/source4/lib/messaging/messaging.c
index 7cf488c7d0..9bf5071e90 100644
--- a/source4/lib/messaging/messaging.c
+++ b/source4/lib/messaging/messaging.c
@@ -690,3 +690,13 @@ NTSTATUS irpc_call(struct messaging_context *msg_ctx,
table, callnum, r);
return irpc_call_recv(irpc);
}
+
+/*
+ add a string name that this irpc server can be called on
+*/
+NTSTATUS irpc_add_name(struct messaging_context *msg_ctx, const char *name)
+{
+ return NT_STATUS_OK;
+}
+
+