mirror of
https://github.com/samba-team/samba.git
synced 2025-02-02 09:47:23 +03:00
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 <vl@samba.org> Reviewed-by: Samuel Cabrero <scabrero@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
parent
d1934e2331
commit
530fb4fdfb
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user