diff options
author | Volker Lendecke <vl@samba.org> | 2008-12-19 16:11:14 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-12-19 16:13:27 +0100 |
commit | 398ef0fb855b3b2d6e55ae26304589fd89110628 (patch) | |
tree | 98c3c4be01dc1b6a61afb5466928f3350ff00d38 /source3/include | |
parent | 98c4055bcba17cde81345947d61fa2faae108654 (diff) | |
download | samba-398ef0fb855b3b2d6e55ae26304589fd89110628.tar.gz samba-398ef0fb855b3b2d6e55ae26304589fd89110628.tar.bz2 samba-398ef0fb855b3b2d6e55ae26304589fd89110628.zip |
For large smbwrite&x, we need more than 64k bcc
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/async_smb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/async_smb.h b/source3/include/async_smb.h index fd0b0d2c53..f8f94aa4c9 100644 --- a/source3/include/async_smb.h +++ b/source3/include/async_smb.h @@ -120,7 +120,7 @@ struct async_req *cli_request_send(TALLOC_CTX *mem_ctx, uint8_t additional_flags, uint8_t wct, const uint16_t *vwv, size_t bytes_alignment, - uint16_t num_bytes, const uint8_t *bytes); + uint32_t num_bytes, const uint8_t *bytes); bool cli_chain_cork(struct cli_state *cli, struct event_context *ev, size_t size_hint); @@ -129,7 +129,7 @@ bool cli_in_chain(struct cli_state *cli); bool smb_splice_chain(char **poutbuf, uint8_t smb_command, uint8_t wct, const uint16_t *vwv, size_t bytes_alignment, - uint16_t num_bytes, const uint8_t *bytes); + uint32_t num_bytes, const uint8_t *bytes); NTSTATUS cli_pull_reply(struct async_req *req, uint8_t *pwct, uint16_t **pvwv, |