svn commit: samba r21081 - in branches/SAMBA_3_0/source/lib: .

vlendec at samba.org vlendec at samba.org
Wed Jan 31 13:05:36 GMT 2007


Author: vlendec
Date: 2007-01-31 13:05:36 +0000 (Wed, 31 Jan 2007)
New Revision: 21081

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=21081

Log:
Add forgotten function
Modified:
   branches/SAMBA_3_0/source/lib/messages.c


Changeset:
Modified: branches/SAMBA_3_0/source/lib/messages.c
===================================================================
--- branches/SAMBA_3_0/source/lib/messages.c	2007-01-31 12:55:39 UTC (rev 21080)
+++ branches/SAMBA_3_0/source/lib/messages.c	2007-01-31 13:05:36 UTC (rev 21081)
@@ -798,5 +798,16 @@
 	}
 }
 
+/*
+  Send a message to a particular server
+*/
+NTSTATUS messaging_send(struct messaging_context *msg,
+			struct server_id server, 
+			uint32_t msg_type, DATA_BLOB *data)
+{
+	return message_send_pid_internal(server.id, msg_type, data->data,
+					 data->length, True, 0)
+		? NT_STATUS_OK : NT_STATUS_ACCESS_DENIED;
+}
 
 /** @} **/



More information about the samba-cvs mailing list