home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / STELNET.ZIP / README.TXT next >
Encoding:
Text File  |  1996-04-01  |  1.9 KB  |  67 lines

  1. BETA
  2.          
  3. STelnet for DELPHI 2.0  -  Stamina Software
  4.  
  5. [Description]
  6.  
  7. STelnet is a group of components for use in telnet applications.
  8.  
  9. [Use]
  10. See the TelTerm.dpr project for a simple demo.
  11.  
  12. [Architecture]
  13. 3 components are needed to create a telnet client:
  14. TTelnetClient
  15. TNVT {abstract}
  16. TNVTParser {abstract}
  17.  
  18. The NVT (Network Virtual Terminal) is the component which implements
  19. the display of characters to the screen and the input of characters
  20. which are sent to the host. I have implemented 2 NVT's: ConsoleNVT
  21. which spawns a console window, and TMemoNVT which displays to a Memo
  22. control.
  23.  
  24. The NVTParser is a component which parses data from the host and does
  25. some basic interpretation (e.g. responding to IACs). I have implemented
  26. a basic ANSI parser as part of STELNET.
  27.  
  28. TTelnetClient is the component which links an NVT and a parser with
  29. a Windows Socket. Use the 'Connect' method to connect to the host.
  30.  
  31. NOTE:
  32. The STELNET components are being designed for the purpose of supporting
  33. many types of client applications and many types of terminals and this
  34. is the philosophy behind separating the NVT, parser and client. For
  35. example, a telnet client may be implemented over a comm port by replacing
  36. TTelnetClient, or a developer may implement a parser which supports
  37. non-standard escape sequences by simply overriding the 'DoParseEscape'
  38. method.
  39.  
  40. [Installation]
  41. Copy both the DCR and DCU files to the same directory.
  42. Follow the DELPHI instuctions for installing
  43. components.
  44.  
  45.  
  46. [Files] 
  47. STelnet Unit,          STELNET.DCU
  48. STelnet Res,          STELNET.DCR
  49. STelnet ReadMe,        README.TXT
  50. Stamina code,        STAMINA.DCU
  51. STelnet Interface,    STLENET.INT
  52.  
  53. [Source Code]
  54. Source code is not included in this release.
  55.  
  56. [Copyright]
  57. STELNET ⌐ is written by David Wann
  58. Copyright ⌐ 1996
  59. Stamina Software ⌐ 
  60. PO Box 5028A      
  61. Newcastle West, 2302
  62. Fax +61 49 296196 
  63. Email: davidwann@hunterlink.net.au
  64.  
  65. Comments and suggestions always welcome.
  66.  
  67.