mirror of
https://github.com/samba-team/samba.git
synced 2024-12-31 17:18:04 +03:00
BUFFER_SIZE Should be 128k if large read write tests are to work.
Jeremy.
This commit is contained in:
parent
098905bea2
commit
2be9b253ad
@ -27,7 +27,12 @@
|
||||
#ifndef _SMB_H
|
||||
#define _SMB_H
|
||||
|
||||
#if defined(LARGE_SMB_OFF_T)
|
||||
#define BUFFER_SIZE (128*1024)
|
||||
#else /* no large readwrite possible */
|
||||
#define BUFFER_SIZE (0xFFFF)
|
||||
#endif
|
||||
|
||||
#define SAFETY_MARGIN 1024
|
||||
#define LARGE_WRITEX_HDR_SIZE 65
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user