From f80363c90a60a4496309a50d760ca05ac4b59e4f Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 15 Sep 2009 20:50:30 -0700 Subject: s4-rpc: added a module for forwarding RPC requests dcesrv_irpc_forward_rpc_call() can be used to forward an arbitrary RPC request to another task in Samba4, with the return being handled asynchronously. This is useful for forwarding DRS requests to the repl or kcc tasks --- source4/rpc_server/config.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/rpc_server/config.mk') diff --git a/source4/rpc_server/config.mk b/source4/rpc_server/config.mk index f60f83327b..93617c2c98 100644 --- a/source4/rpc_server/config.mk +++ b/source4/rpc_server/config.mk @@ -8,7 +8,8 @@ PRIVATE_DEPENDENCIES = LIBLDB # End SUBSYSTEM DCERPC_COMMON ################################################ -DCERPC_COMMON_OBJ_FILES = $(addprefix $(rpc_serversrcdir)/common/, server_info.o share_info.o) +DCERPC_COMMON_OBJ_FILES = $(addprefix $(rpc_serversrcdir)/common/, \ + server_info.o share_info.o forward.o) $(eval $(call proto_header_template,$(rpc_serversrcdir)/common/proto.h,$(DCERPC_COMMON_OBJ_FILES:.o=.c))) -- cgit