1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-01 16:23:49 +03:00

r20047: patch from Julien Kerihuel <j.kerihuel@openchange.org>

to make the "remote" rpc proxy work for outlook and exchange

metze
This commit is contained in:
Stefan Metzmacher
2006-12-06 09:25:26 +00:00
committed by Gerald (Jerry) Carter
parent 879dfed8d8
commit 00875f806e

View 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;