diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-08-02 22:59:54 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-08-09 15:30:04 +0200 |
commit | 70c2bbecde434264e0b54279f13159e9991efade (patch) | |
tree | f01a9018a7114d51192fc327d84d06e419291f7b /source3/torture | |
parent | 46eacae8b516c0a2b9c372af0baadc436f64d957 (diff) | |
download | samba-70c2bbecde434264e0b54279f13159e9991efade.tar.gz samba-70c2bbecde434264e0b54279f13159e9991efade.tar.bz2 samba-70c2bbecde434264e0b54279f13159e9991efade.zip |
s3:torture/*: use CLI_BUFFER_SIZE instead of cli->max_xmit
The max_data parameter of trans2/nttrans calls are not bound
to cli->max_xmit. Even with cli->max_xmit, which means the max
size of the whole SMB pdu, we would get fragmented trans2/nttrans
replies. That's why we can also use our maximum, which is CLI_BUFFER_SIZE.
metze
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/nbench.c | 2 | ||||
-rw-r--r-- | source3/torture/scanner.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source3/torture/nbench.c b/source3/torture/nbench.c index d2fddf0094..612dc7db9c 100644 --- a/source3/torture/nbench.c +++ b/source3/torture/nbench.c @@ -298,7 +298,7 @@ static struct tevent_req *nbench_cmd_send(TALLOC_CTX *mem_ctx, } subreq = cli_qpathinfo_send(state, ev, nb_state->cli, fname, ival(state->cmd->params[2]), - 0, nb_state->cli->max_xmit); + 0, CLI_BUFFER_SIZE); break; } default: diff --git a/source3/torture/scanner.c b/source3/torture/scanner.c index 5edd52d567..580dadf80e 100644 --- a/source3/torture/scanner.c +++ b/source3/torture/scanner.c @@ -67,7 +67,7 @@ static NTSTATUS try_trans2(struct cli_state *cli, op, 0, NULL, 0, 0, /* setup */ param, param_len, 2, - data, data_len, cli->max_xmit, + data, data_len, CLI_BUFFER_SIZE, NULL, /* recv_flags2 */ NULL, 0, NULL, /* rsetup */ &rparam, 0, rparam_len, @@ -313,7 +313,7 @@ static NTSTATUS try_nttrans(struct cli_state *cli, op, 0, NULL, 0, 0, /* setup */ param, param_len, 2, - data, data_len, cli->max_xmit, + data, data_len, CLI_BUFFER_SIZE, NULL, /* recv_flags2 */ NULL, 0, NULL, /* rsetup */ &rparam, 0, rparam_len, |