From 0e1d340d2400ac0452c39761d773d7db77f10065 Mon Sep 17 00:00:00 2001 From: mysticbbs Date: Thu, 16 Feb 2012 22:43:26 -0500 Subject: [PATCH] Dupe IP forces value of at least 2 --- mystic/bbs_cfg_syscfg.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mystic/bbs_cfg_syscfg.pas b/mystic/bbs_cfg_syscfg.pas index ad5e983..de4deca 100644 --- a/mystic/bbs_cfg_syscfg.pas +++ b/mystic/bbs_cfg_syscfg.pas @@ -339,7 +339,7 @@ Begin Form.AddWord ('P', ' Server Port', 34, 10, 49, 10, 13, 5, 0, 65535, @Config.inetFTPPort, Topic + 'FTP Server port'); Form.AddWord ('M', ' Max Connections', 30, 11, 49, 11, 17, 5, 0, 65535, @Config.inetFTPMax, Topic + 'Max concurrent connections'); Form.AddWord ('C', ' Connection Timeout', 27, 12, 49, 12, 20, 5, 0, 65535, @Config.inetFTPTimeout, Topic + 'Connection timeout (seconds)'); - Form.AddByte ('D', ' Dupe IP Limit', 32, 13, 49, 13, 15, 3, 0, 255, @Config.inetFTPDupes, Topic + 'Max connections with same IP'); + Form.AddByte ('D', ' Dupe IP Limit', 32, 13, 49, 13, 15, 3, 2, 255, @Config.inetFTPDupes, Topic + 'Max connections with same IP'); Form.AddWord ('I', ' Data Port Min', 32, 14, 49, 14, 15, 5, 0, 65535, @Config.inetFTPPortMin, Topic + 'Passive port range (minimum)'); Form.AddWord ('A', ' Data Port Max', 32, 15, 49, 15, 15, 5, 0, 65535, @Config.inetFTPPortMax, Topic + 'Passive port range (maximum)'); Form.AddBol ('Y', ' Allow Anonymous', 30, 16, 49, 16, 17, 3, @Config.inetFTPAnon, Topic + 'Allow anonymous users'); @@ -351,4 +351,4 @@ Begin Box.Free; End; -End. \ No newline at end of file +End.