diff options
Diffstat (limited to 'source4/torture/raw')
-rw-r--r-- | source4/torture/raw/lockbench.c | 6 | ||||
-rw-r--r-- | source4/torture/raw/openbench.c | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/source4/torture/raw/lockbench.c b/source4/torture/raw/lockbench.c index 9131128f81..28392880d7 100644 --- a/source4/torture/raw/lockbench.c +++ b/source4/torture/raw/lockbench.c @@ -193,6 +193,12 @@ static void reopen_connection(struct event_context *ev, struct timed_event *te, io->in.credentials = cmdline_credentials; io->in.fallback_to_anonymous = false; io->in.workgroup = lp_workgroup(state->tctx->lp_ctx); + io->in.max_xmit = lp_max_xmit(state->tctx->lp_ctx); + io->in.max_mux = lp_maxmux(state->tctx->lp_ctx); + io->in.ntstatus_support = lp_nt_status_support(state->tctx->lp_ctx); + io->in.max_protocol = lp_cli_maxprotocol(state->tctx->lp_ctx); + io->in.unicode = lp_unicode(state->tctx->lp_ctx); + io->in.use_spnego = lp_use_spnego(state->tctx->lp_ctx) && lp_nt_status_support(state->tctx->lp_ctx); /* kill off the remnants of the old connection */ talloc_free(state->tree); diff --git a/source4/torture/raw/openbench.c b/source4/torture/raw/openbench.c index 881f487cb0..4b6c76488f 100644 --- a/source4/torture/raw/openbench.c +++ b/source4/torture/raw/openbench.c @@ -131,6 +131,12 @@ static void reopen_connection(struct event_context *ev, struct timed_event *te, io->in.credentials = cmdline_credentials; io->in.fallback_to_anonymous = false; io->in.workgroup = lp_workgroup(state->tctx->lp_ctx); + io->in.max_xmit = lp_max_xmit(state->tctx->lp_ctx); + io->in.max_mux = lp_maxmux(state->tctx->lp_ctx); + io->in.ntstatus_support = lp_nt_status_support(state->tctx->lp_ctx); + io->in.max_protocol = lp_cli_maxprotocol(state->tctx->lp_ctx); + io->in.unicode = lp_unicode(state->tctx->lp_ctx); + io->in.use_spnego = lp_use_spnego(state->tctx->lp_ctx) && lp_nt_status_support(state->tctx->lp_ctx); /* kill off the remnants of the old connection */ talloc_free(state->tree); |