diff options
author | Jeremy Allison <jra@samba.org> | 2007-12-30 18:05:33 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-12-30 18:05:33 -0800 |
commit | 06f80cf8becc84672aad9d8703e1a2fbc80af20c (patch) | |
tree | 288757927d46d42aee6dadfbac11827ebcc9c859 /source3/client | |
parent | c6646f115ebca2fe8b05c898d3529832b3599056 (diff) | |
download | samba-06f80cf8becc84672aad9d8703e1a2fbc80af20c.tar.gz samba-06f80cf8becc84672aad9d8703e1a2fbc80af20c.tar.xz samba-06f80cf8becc84672aad9d8703e1a2fbc80af20c.zip |
We may use 127k read/write for encrypted connections.
Jeremy.
(This used to be commit 656c9d0844e3d9d87ae768fe5a5538759b94d953)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 2a86035cf0..6c00638eb9 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -3798,7 +3798,7 @@ int cmd_iosize(void) d_printf("iosize <n> or iosize 0x<n>. " "(Encrypted connection) ," "Minimum is 16384 (0x4000), " - "max is 64512 (0xFC00)\n"); + "max is 130048 (0x1FC00)\n"); } return 1; } @@ -3807,7 +3807,7 @@ int cmd_iosize(void) if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) { d_printf("iosize out of range for encrypted " "connection (min = 16384 (0x4000), " - "max = 64512 (0xFC00)"); + "max = 130048 (0x1FC00)"); return 1; } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) { d_printf("iosize out of range (min = 16384 (0x4000), " |