From: Volker Lendecke Date: Wed, 9 Jun 2021 04:09:37 +0000 (+0200) Subject: named_pipe_auth.idl: Add "need_idle_server" X-Git-Tag: tdb-1.4.6~376 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=530fb4fdfb32d38cc55ed57cc6157bf63df069a7;p=thirdparty%2Fsamba.git named_pipe_auth.idl: Add "need_idle_server" Once RPC services are done by individual processes, we need to avoid recursion between processes: Any RPC server process will be able to serve multiple client requests simultaneously, but each request is served in a single-threaded blocking manner. For example the netlogon RPC service needs to ask samr for something. The netlogon->samr connection will initially be handled by a central dispatcher assigning clients to processes. This dispatcher needs to know that this connection can't end up in the same process that originated the request. With this flag an RPC client can request a samr server process that exclusively serves its own requests and that will not serve anybody else while serving netlogon. Signed-off-by: Volker Lendecke Reviewed-by: Samuel Cabrero Reviewed-by: Jeremy Allison Reviewed-by: Stefan Metzmacher --- diff --git a/librpc/idl/named_pipe_auth.idl b/librpc/idl/named_pipe_auth.idl index 2694dc6eeaa..bc727d2e538 100644 --- a/librpc/idl/named_pipe_auth.idl +++ b/librpc/idl/named_pipe_auth.idl @@ -20,6 +20,7 @@ interface named_pipe_auth [charset(DOS),string] uint8 *local_server_addr; uint16 local_server_port; auth_session_info_transport *session_info; + boolean8 need_idle_server; } named_pipe_auth_req_info5; typedef [switch_type(uint32)] union {