From 84e18433f9cfaa756d3d037fae1d8f349d63ca02 Mon Sep 17 00:00:00 2001 From: mysticbbs Date: Tue, 21 Aug 2012 12:22:36 -0400 Subject: [PATCH] Start hidden option for telnet --- mystic/bbs_cfg_syscfg.pas | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mystic/bbs_cfg_syscfg.pas b/mystic/bbs_cfg_syscfg.pas index 9cc3a86..505859e 100644 --- a/mystic/bbs_cfg_syscfg.pas +++ b/mystic/bbs_cfg_syscfg.pas @@ -426,14 +426,15 @@ Begin Box.Header := ' Telnet Server '; - Box.Open (26, 9, 54, 16); + Box.Open (26, 9, 54, 17); - VerticalLine (46, 11, 14); + VerticalLine (46, 11, 15); Form.AddBol ('U', ' Use Telnet Server', 27, 11, 48, 11, 19, 3, @Config.inetTNUse, Topic + 'Enable Telnet server'); Form.AddByte ('N', ' Telnet Nodes', 32, 12, 48, 12, 14, 3, 1, 255, @Config.inetTNNodes, Topic + 'Max telnet nodes to allow'); Form.AddWord ('P', ' Server Port', 33, 13, 48, 13, 13, 5, 0, 65535, @Config.inetTNPort, Topic + 'Telnet Server port'); Form.AddByte ('D', ' Dupe IP Limit', 31, 14, 48, 14, 15, 3, 1, 255, @Config.inetTNDupes, Topic + 'Max connections with same IP'); + Form.AddBol ('S', ' Start Hidden', 32, 15, 48, 15, 14, 3, @Config.inetTNHidden, Topic + 'Hide node windows (Windows)'); Form.Execute; Form.Free;