diff options
author | Jeremy Allison <jra@samba.org> | 2001-05-23 18:47:52 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-05-23 18:47:52 +0000 |
commit | 4d86a2841cd3941c8b67e3f2dc1670562b6874a6 (patch) | |
tree | dc2a1eb7c28c71352fd080e1696e5c7812ff64f5 /source3/smbd | |
parent | 840fb1643dbaa3ca1b435ccd85ce50123cf6252d (diff) | |
download | samba-4d86a2841cd3941c8b67e3f2dc1670562b6874a6.tar.gz samba-4d86a2841cd3941c8b67e3f2dc1670562b6874a6.tar.bz2 samba-4d86a2841cd3941c8b67e3f2dc1670562b6874a6.zip |
This is *very* cool. I'm pretty convinced we can just set the
CAP_LARGE_READX|CAP_LARGE_WRITEX bits on negprot and out W2K
performance goes through the roof......
And as we *always* offer 64 buffers we can do this with this
simple change.....
Jeremy.
(This used to be commit c328dda0fa081e79049d7a9ddac06e80cc8b331b)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/negprot.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/smbd/negprot.c b/source3/smbd/negprot.c index ffc5d5e398..6c45e37654 100644 --- a/source3/smbd/negprot.c +++ b/source3/smbd/negprot.c @@ -160,6 +160,7 @@ static int reply_nt1(char *outbuf) /* dual names + lock_and_read + nt SMBs + remote API calls */ int capabilities = CAP_NT_FIND|CAP_LOCK_AND_READ|CAP_LEVEL_II_OPLOCKS| (lp_nt_smb_support() ? CAP_NT_SMBS | CAP_RPC_REMOTE_APIS : 0) | + CAP_LARGE_READX | CAP_LARGE_WRITEX | (SMB_OFF_T_BITS == 64 ? CAP_LARGE_FILES : 0); |