svn commit: samba r20047 - in branches/SAMBA_4_0/source/rpc_server/remote: .

metze at samba.org metze at samba.org
Wed Dec 6 09:25:27 GMT 2006


Author: metze
Date: 2006-12-06 09:25:26 +0000 (Wed, 06 Dec 2006)
New Revision: 20047

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

Log:
patch from Julien Kerihuel <j.kerihuel at openchange.org>
to make the "remote" rpc proxy work for outlook and exchange

metze
Modified:
   branches/SAMBA_4_0/source/rpc_server/remote/dcesrv_remote.c


Changeset:
Modified: branches/SAMBA_4_0/source/rpc_server/remote/dcesrv_remote.c
===================================================================
--- branches/SAMBA_4_0/source/rpc_server/remote/dcesrv_remote.c	2006-12-05 16:20:39 UTC (rev 20046)
+++ branches/SAMBA_4_0/source/rpc_server/remote/dcesrv_remote.c	2006-12-06 09:25:26 UTC (rev 20047)
@@ -30,6 +30,11 @@
 	struct dcerpc_pipe *c_pipe;
 };
 
+static NTSTATUS remote_op_reply(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, void *r)
+{
+	return NT_STATUS_OK;
+}
+
 static NTSTATUS remote_op_bind(struct dcesrv_call_state *dce_call, const struct dcesrv_interface *iface)
 {
         NTSTATUS status;
@@ -256,6 +261,7 @@
 
 	iface->ndr_pull = remote_op_ndr_pull;
 	iface->dispatch = remote_op_dispatch;
+	iface->reply = remote_op_reply;
 	iface->ndr_push = remote_op_ndr_push;
 
 	iface->private = if_tabl;



More information about the samba-cvs mailing list