1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-23 09:57:40 +03:00

s4:rpc_server: support DCESRV_CALL_STATE_FLAG_MULTIPLEXED by default

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Stefan Metzmacher 2016-09-15 18:18:01 +02:00 committed by Andreas Schneider
parent f44282ca07
commit d2d09474dd

View File

@ -1089,6 +1089,11 @@ static NTSTATUS dcesrv_check_or_create_context(struct dcesrv_call_state *call,
dcesrv_prepare_context_auth(call);
/*
* Multiplex is supported by default
*/
call->state_flags |= DCESRV_CALL_STATE_FLAG_MULTIPLEXED;
status = iface->bind(call, iface, if_version);
call->context = NULL;
if (!NT_STATUS_IS_OK(status)) {