Changes for zmodem in telnet client
This commit is contained in:
parent
0374c7d4e2
commit
34db17e621
|
@ -126,9 +126,13 @@ Begin
|
|||
Screen := TConsoleScrollBack.Create(True);
|
||||
Keyboard := TInput.Create;
|
||||
|
||||
GetDIR (0, XferPath);
|
||||
|
||||
INI := TIniReader.Create('nodespy.ini');
|
||||
|
||||
AutoSnoop := INI.ReadString('General', 'autosnoop', '0') = '1';
|
||||
AutoSnoop := INI.ReadString('General', 'autosnoop', '0') = '1';
|
||||
XferPath := INI.ReadString('General', 'transfer_dir', DirSlash(XferPath));
|
||||
AutoZmodem := INI.ReadBoolean('General;', 'auto_zmodem', True);
|
||||
|
||||
INI.Free;
|
||||
|
||||
|
|
|
@ -26,6 +26,8 @@ Var
|
|||
Term : TTermAnsi;
|
||||
ConfigFile : File of RecConfig;
|
||||
Config : RecConfig;
|
||||
XferPath : String;
|
||||
AutoZmodem : Boolean;
|
||||
|
||||
Implementation
|
||||
|
||||
|
|
Loading…
Reference in New Issue