summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2008-04-17 09:37:29 +0200
committerAndrew Tridgell <tridge@samba.org>2008-04-17 09:37:29 +0200
commit769ebe91711330d5b75f9632c2b1d1847dd32a15 (patch)
tree33322f4bac925a9c0b9af34ce36a2c1160098246
parent30b9c37420100c98df1a538673d508e46517accf (diff)
downloadsamba-769ebe91711330d5b75f9632c2b1d1847dd32a15.tar.gz
samba-769ebe91711330d5b75f9632c2b1d1847dd32a15.tar.bz2
samba-769ebe91711330d5b75f9632c2b1d1847dd32a15.zip
make smb2 read and write size configurable
(This used to be commit 2090e75e0c28f8d2aada305059bdb455f42ed0d5)
-rw-r--r--source4/smb_server/smb2/negprot.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/source4/smb_server/smb2/negprot.c b/source4/smb_server/smb2/negprot.c
index e7352f7c42..4479ae2da1 100644
--- a/source4/smb_server/smb2/negprot.c
+++ b/source4/smb_server/smb2/negprot.c
@@ -114,9 +114,12 @@ static NTSTATUS smb2srv_negprot_backend(struct smb2srv_request *req, struct smb2
io->out.security_mode = 0; /* no signing yet */
io->out.dialect_revision = SMB2_DIALECT_REVISION;
io->out.capabilities = 0;
- io->out.max_transact_size = 0x10000;
- io->out.max_read_size = 0x10000;
- io->out.max_write_size = 0x10000;
+ io->out.max_transact_size = lp_parm_ulong(req->smb_conn->lp_ctx, NULL,
+ "smb2", "max transaction size", 0x10000);
+ io->out.max_read_size = lp_parm_ulong(req->smb_conn->lp_ctx, NULL,
+ "smb2", "max read size", 0x10000);
+ io->out.max_write_size = lp_parm_ulong(req->smb_conn->lp_ctx, NULL,
+ "smb2", "max write size", 0x10000);
io->out.system_time = timeval_to_nttime(&current_time);
io->out.server_start_time = timeval_to_nttime(&boot_time);
io->out.reserved2 = 0;