1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-11 00:23:51 +03:00

r15162: Patch for bug #3668. Windows has a bug with LARGE_READX

where if you ask for exactly 64k bytes it returns 0.
Jeremy.
This commit is contained in:
Jeremy Allison
2006-04-22 02:33:11 +00:00
committed by Gerald (Jerry) Carter
parent dcbece8254
commit dcef65acb5
3 changed files with 27 additions and 5 deletions

View File

@@ -27,7 +27,8 @@
overlap on the wire. This size gives us a nice read/write size, which
will be a multiple of the page size on almost any system */
#define CLI_BUFFER_SIZE (0xFFFF)
#define CLI_MAX_LARGE_READX_SIZE (127*1024)
#define CLI_SAMBA_MAX_LARGE_READX_SIZE (127*1024) /* Works for Samba servers */
#define CLI_WINDOWS_MAX_LARGE_READX_SIZE ((64*1024)-2) /* Windows servers are broken.... */
/*
* These definitions depend on smb.h
@@ -143,6 +144,7 @@ struct cli_state {
unsigned int bufsize;
int initialised;
int win95;
BOOL is_samba;
uint32 capabilities;
BOOL dfsroot;