r20047: patch from Julien Kerihuel <j.kerihuel@openchange.org>
authorStefan Metzmacher <metze@samba.org>
Wed, 6 Dec 2006 09:25:26 +0000 (09:25 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:28:55 +0000 (14:28 -0500)
to make the "remote" rpc proxy work for outlook and exchange

metze
(This used to be commit 00875f806eca4165cb098b0e01e33c74fdea2bf5)

source4/rpc_server/remote/dcesrv_remote.c

index b15d830c6db8add91a1b01c71f8181a890171395..d2aabc80335101603523616e53de9b1ba4b42f8f 100644 (file)
@@ -30,6 +30,11 @@ struct dcesrv_remote_private {
        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 @@ static BOOL remote_fill_interface(struct dcesrv_interface *iface, const struct d
 
        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;