summaryrefslogtreecommitdiff
path: root/source4/torture/smb2
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-06-03 10:49:44 +0200
committerStefan Metzmacher <metze@samba.org>2009-06-03 10:50:52 +0200
commitedeccf0df0989df5a36f88642d0e373847955be2 (patch)
tree1b6601c68810113d3de0cd490379b24897329aba /source4/torture/smb2
parent8d033ec0d115fe2cdd9bf1fa9758cc0994f5b6f0 (diff)
downloadsamba-edeccf0df0989df5a36f88642d0e373847955be2.tar.gz
samba-edeccf0df0989df5a36f88642d0e373847955be2.tar.bz2
samba-edeccf0df0989df5a36f88642d0e373847955be2.zip
SMB2-CONNECT: make it possible to specific the max write size via --option=torture:smb2maxwrite=12345
metze
Diffstat (limited to 'source4/torture/smb2')
-rw-r--r--source4/torture/smb2/connect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/smb2/connect.c b/source4/torture/smb2/connect.c
index 01ffffa484..bd1abce827 100644
--- a/source4/torture/smb2/connect.c
+++ b/source4/torture/smb2/connect.c
@@ -78,7 +78,7 @@ static NTSTATUS torture_smb2_write(struct torture_context *tctx, struct smb2_tre
} else if (torture_setting_bool(tctx, "samba4", false)) {
data = data_blob_talloc(tree, NULL, UINT16_MAX);
} else {
- data = data_blob_talloc(tree, NULL, 120000);
+ data = data_blob_talloc(tree, NULL, torture_setting_int(tctx, "smb2maxwrite", 120000));
}
for (i=0;i<data.length;i++) {
data.data[i] = i;