mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
s4:torture/smb2: make it possible to pass existing_conn to smb2_connect_ext()
BUG: https://bugzilla.samba.org/show_bug.cgi?id=15346 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
parent
dc5a500f0a
commit
2b93058be3
@ -405,6 +405,7 @@ NTSTATUS smb2_connect_ext(TALLOC_CTX *mem_ctx,
|
||||
const char *share,
|
||||
struct resolve_context *resolve_ctx,
|
||||
struct cli_credentials *credentials,
|
||||
struct smbXcli_conn **existing_conn,
|
||||
uint64_t previous_session_id,
|
||||
struct smb2_tree **tree,
|
||||
struct tevent_context *ev,
|
||||
@ -429,7 +430,7 @@ NTSTATUS smb2_connect_ext(TALLOC_CTX *mem_ctx,
|
||||
resolve_ctx,
|
||||
credentials,
|
||||
false, /* fallback_to_anonymous */
|
||||
NULL, /* existing_conn */
|
||||
existing_conn,
|
||||
previous_session_id,
|
||||
options,
|
||||
socket_options,
|
||||
@ -473,6 +474,7 @@ NTSTATUS smb2_connect(TALLOC_CTX *mem_ctx,
|
||||
|
||||
status = smb2_connect_ext(mem_ctx, host, ports, share, resolve_ctx,
|
||||
credentials,
|
||||
NULL, /* existing_conn */
|
||||
0, /* previous_session_id */
|
||||
tree, ev, options, socket_options,
|
||||
gensec_settings);
|
||||
|
@ -426,6 +426,7 @@ bool torture_smb2_connection_ext(struct torture_context *tctx,
|
||||
share,
|
||||
lpcfg_resolve_context(tctx->lp_ctx),
|
||||
samba_cmdline_get_creds(),
|
||||
NULL, /* existing_conn */
|
||||
previous_session_id,
|
||||
tree,
|
||||
tctx->ev,
|
||||
|
Loading…
Reference in New Issue
Block a user