home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / dgrdos1 / rdoskerdoc.txt < prev   
Text File  |  2020-01-01  |  5KB  |  104 lines

  1. This RDOS version of  KERMIT was written  on a  DATA GENERAL
  2. NOVA/4 running RDOS Rev.  7.0 and Fortran  5 Rev.  6.14. The
  3. source  code is  written in  RATFOR,  which translates  into
  4. FORTRAN 5  code before  compilation.  For  those of  you who
  5. need to make modification to  the program, it is recommended
  6. that one examine  the RATFOR source code where  there are at
  7. least  some decoumentation  on various  sections of  program
  8. code.  The  RATFOR version source  code should  be available
  9. from Columbia University.  In evaluating  the merits of this
  10. KERMIT-RDOS program one should  keep in  mind that  the main
  11. purpose  of implemented  KERMIT-RDOS on  our system  is  for
  12. understanding and  evaluation of the KERMIT  protocol itself.
  13. Therefore  more  effort  was  spend  on  the  file  transfer
  14. function  rather than  on the  terminal emulation  function.
  15. Our computing facility  also includes the availability  of a
  16. local area network hence the  issue of controlling baud rate
  17. or  parity bit  were  not addressed.   I  was  a little  bit
  18. reluctant in releasing this program because I felt it is not
  19. in a desirable state; however I was persuaded by others that
  20. something is better  than nothing at all.  I  can only added
  21. that this RDOS version of KERMIT works on  our system.  This
  22. KERMIT-AOS transferred  file sucessfully  between an  IBM/PC
  23. and IBM 370/CMS; both programs were originated from Columbia
  24. University via DECUS  tape.  Credit should also  be given to
  25. Fred Brehm  who installed  the RATFOR  translator onto  D.G.
  26. machines  for  RCA   and  it  makes  my   implementation  of
  27. RDOS-KERMIT from the C listing found in  the PROTOCOL manual
  28. much simpiler.  Permission  is granted to any  individual or
  29. institution  to  copy  or  use   this  program,  except  for
  30. explicitly commercial purpose.
  31.    
  32.    
  33.                                         John Lee
  34.                                         RCA LABS (PRINCETON)
  35.                                         609-734-3157
  36.                                         7/9/84
  37.    
  38.  Terminology and features
  39.  ------------------------
  40.    
  41.  LOCAL      - An user will be using KERMIT-RDOS in logon to other KERMIT,
  42.             - file transfer will occur over a QTY or ALM or ULM port.
  43.             - This KERMIT-RDOS programs uses the QTY:3 line.
  44.    
  45.  REMOTE     - An user will be using other KERMIT in logon to the RDOS
  46.             - system and activiating KERMIT-RDOS.  File transfer will
  47.             - occur on this same TTY line.  RDOS operatig system is not
  48.             - a truly multi-user environment; therefore REMOTE KERMIT
  49.             - HOST is not implemented although it would be a simple task.
  50.    
  51.  CONNECT    - Enters into the 'CHAT' mode, whatever you typed on the
  52.             - local keyboard is transmitted to the remote host, and
  53.             - information from the remote host are transmitted to the
  54.             - local terminal.  'CHAT' mode is used in establishing
  55.             - login sessions and invoking remote KERMIT program.
  56.             - CNTR-] will cause exit from 'CHAT' mode.
  57.    
  58.  EXIT       - EXIT from this KERMIT program and returns to the CLI.
  59.    
  60.  HELP       - Displays the content of a help file.
  61.    
  62.  QUIT       - QUIT from this KERMIT program and returns to the CLI.
  63.    
  64.  RECEIVE    - Enters the 'RECEIVE' state of file transfer mode,
  65.             - program waits for in-coming packet with no time-out
  66.             - detection capability provided.
  67.    
  68.  SEND       - Enters the 'SEND' state of file transfer mode, program
  69.             - will then prompts for either a filename or a directory
  70.             - of filenames (i.e. @directory) to be transmitted.  E.G.
  71.             - a filename of 'TEST' means send the file with the filename
  72.             - of 'TEST', whereas a filename of '@TEST' means each line of
  73.             - file 'TEST' is to be interpreted as a filename to be send.
  74.             - This acts as a work around with the wildcard feature found
  75.             - on other system.
  76.    
  77.  SET IBM OFF- In 'CHAT' mode, expects remote system to echo back
  78.             - transmitted characters.  In file transfer mode, does
  79.             - not wait for the detection of DC1 before sending out
  80.             - the next packet.
  81.    
  82.  SET IBM ON - In 'CHAT' mode, performs local echoing of transmitted
  83.             - characters.  In file transfer mode, wait for the
  84.             - detection of DC1 from CMS before sending out the next
  85.             - packet.  The program actually looks for the CMS prompt of
  86.             - BELL (7).
  87.    
  88.  STATUS    - Displays the current values of various setting.
  89.    
  90.  One would invoke KERMIT-RDOS by typing :
  91.  ----------------------------------------
  92.  KERMIT/I
  93.    
  94.  Procedure On Installing KERMIT-RDOS Onto Your Data General RDOS system.
  95.    
  96.  1) Edit the large source file and breaks them into small one based
  97.     on the filename given.
  98.    
  99.  2) Compile all the source program by typing the "COMPILE.MC"
  100.     command file.
  101.    
  102.  3) Load and link all the relocatable file by typing the "@LINKALL.LD@"
  103.     command file.
  104.