mirror of
https://github.com/samba-team/samba.git
synced 2025-02-23 09:57:40 +03:00
s4:torture: send the TCONX_FLAG_EXTENDED_RESPONSE flag
metze Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Thu Aug 2 10:54:18 CEST 2012 on sn-devel-104
This commit is contained in:
parent
95b64f08a3
commit
e9562530d9
@ -292,7 +292,7 @@ static bool test_tree(struct torture_context *tctx, struct smbcli_state *cli)
|
||||
tree = smbcli_tree_init(cli->session, tctx, false);
|
||||
|
||||
tcon.generic.level = RAW_TCON_TCONX;
|
||||
tcon.tconx.in.flags = 0;
|
||||
tcon.tconx.in.flags = TCONX_FLAG_EXTENDED_RESPONSE;
|
||||
tcon.tconx.in.password = data_blob(NULL, 0);
|
||||
tcon.tconx.in.path = talloc_asprintf(tctx, "\\\\%s\\%s", host, share);
|
||||
tcon.tconx.in.device = "A:";
|
||||
@ -412,7 +412,7 @@ static bool test_tree_ulogoff(struct torture_context *tctx, struct smbcli_state
|
||||
torture_comment(tctx, "create a tree context on the with vuid1\n");
|
||||
tree = smbcli_tree_init(session1, tctx, false);
|
||||
tcon.generic.level = RAW_TCON_TCONX;
|
||||
tcon.tconx.in.flags = 0;
|
||||
tcon.tconx.in.flags = TCONX_FLAG_EXTENDED_RESPONSE;
|
||||
tcon.tconx.in.password = data_blob(NULL, 0);
|
||||
tcon.tconx.in.path = talloc_asprintf(tctx, "\\\\%s\\%s", host, share);
|
||||
tcon.tconx.in.device = "A:";
|
||||
@ -765,7 +765,7 @@ static bool test_pid_2tcon(struct torture_context *tctx,
|
||||
tree = smbcli_tree_init(cli->session, tctx, false);
|
||||
|
||||
tcon.generic.level = RAW_TCON_TCONX;
|
||||
tcon.tconx.in.flags = 0;
|
||||
tcon.tconx.in.flags = TCONX_FLAG_EXTENDED_RESPONSE;
|
||||
tcon.tconx.in.password = data_blob(NULL, 0);
|
||||
tcon.tconx.in.path = talloc_asprintf(tctx, "\\\\%s\\%s", host, share);
|
||||
tcon.tconx.in.device = "A:";
|
||||
|
@ -807,7 +807,7 @@ static bool test_async(struct torture_context *tctx,
|
||||
host = torture_setting_string(tctx, "host", NULL);
|
||||
tree = smbcli_tree_init(session, tctx, false);
|
||||
tcon.generic.level = RAW_TCON_TCONX;
|
||||
tcon.tconx.in.flags = 0;
|
||||
tcon.tconx.in.flags = TCONX_FLAG_EXTENDED_RESPONSE;
|
||||
tcon.tconx.in.password = data_blob(NULL, 0);
|
||||
tcon.tconx.in.path = talloc_asprintf(tctx, "\\\\%s\\%s", host, share);
|
||||
tcon.tconx.in.device = "A:";
|
||||
|
@ -1550,7 +1550,7 @@ static struct smbcli_tree *secondary_tcon(struct smbcli_state *cli,
|
||||
tree = smbcli_tree_init(cli->session, tctx, false);
|
||||
|
||||
tcon.generic.level = RAW_TCON_TCONX;
|
||||
tcon.tconx.in.flags = 0;
|
||||
tcon.tconx.in.flags = TCONX_FLAG_EXTENDED_RESPONSE;
|
||||
tcon.tconx.in.password = data_blob(NULL, 0);
|
||||
tcon.tconx.in.path = talloc_asprintf(tctx, "\\\\%s\\%s", host, share);
|
||||
tcon.tconx.in.device = "A:";
|
||||
|
@ -1727,7 +1727,7 @@ static NTSTATUS secondary_tcon(struct torture_context *tctx,
|
||||
}
|
||||
|
||||
tcon.generic.level = RAW_TCON_TCONX;
|
||||
tcon.tconx.in.flags = 0;
|
||||
tcon.tconx.in.flags = TCONX_FLAG_EXTENDED_RESPONSE;
|
||||
tcon.tconx.in.password = data_blob(NULL, 0);
|
||||
tcon.tconx.in.path = sharename;
|
||||
tcon.tconx.in.device = "?????";
|
||||
|
@ -868,7 +868,7 @@ NTSTATUS torture_second_tcon(TALLOC_CTX *mem_ctx,
|
||||
}
|
||||
|
||||
tcon.generic.level = RAW_TCON_TCONX;
|
||||
tcon.tconx.in.flags = 0;
|
||||
tcon.tconx.in.flags = TCONX_FLAG_EXTENDED_RESPONSE;
|
||||
|
||||
/* Ignore share mode security here */
|
||||
tcon.tconx.in.password = data_blob(NULL, 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user