home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / a / aos-vs.zip / CKDKER.INI < prev    next >
Text File  |  1992-11-23  |  3KB  |  52 lines

  1. # ***** CKERMIT.INI.PROTO *****
  2.  
  3. # This is a prototype version of a CKERMIT.INI initialization file.
  4. # It is provided with revision 5.184 of C-Kermit for AOS/VS.  In order
  5. # to use it, you must rename it to CKERMIT.INI, and edit it to
  6. # suit your particular needs.  As provided, it takes the following
  7. # actions:
  8. #
  9. #       1. Sets the Kermit CONNECT-mode escape character to ^]
  10. #       2. Sets the Kermit prompt to "AOS/VS C-Kermit>"
  11. #       3. Increases the level of file transfer error-checking
  12. #       4. Changes the file collision action for incoming files to "rename"
  13. #       5. Changes the file transfer character set to ISO Latin 1
  14. #       6. Changes the display type for file transfers to "crt", which
  15. #          causes more information to be displayed (e.g. percentage
  16. #          completed)
  17. #       7. Defines a macro called "cli" to start a subordinate
  18. #          CLI process (equivalent to "push" or "!")
  19. #       8. Defines a macro call "reset" to reset the screen display
  20. #          of a native Data General Dasher-style terminal
  21. #       9. Turns on transaction logging, which causes information about
  22. #          file transfers to be stored in TRANSACT.LOG
  23. #       10.Increases the default window size and the default send
  24. #          and receive packet sizes.  These may need to be
  25. #          adjusted.  If you have a very noisy modem line, you
  26. #          might have to decrease the packet sizes.  If you're
  27. #          using a Telnet connection, on the other hand, you
  28. #          may want to increase them for better performance.  Note
  29. #          that packet and window sizes must match those of the
  30. #          remote Kermit.  NOTE:  These statements are commented out,
  31. #          so if you want to use them, you must remove the pound
  32. #          sign in column 1.
  33. #
  34. set escape 29                   # This is ^] instead of ^\
  35. set prompt AOS/VS C-Kermit\62   # So we'll know what Kermit we're talking to
  36. set block-check 3               # Most rigorous error-checking
  37. set file collision rename       # For compatibility with MS-DOS Kermit default
  38. set file display crt            # Remove this line if using hardcopy terminal
  39. set file char dg-international  # To translate DGI characters
  40. set transfer char latin1        # Standard 8-bit character set
  41. define cli push                 # "CLI" macro starts a subordinate CLI process
  42. define reset -                  # Macro to reset Dasher terminal
  43.  run write [!ascii 236 306 301]
  44. log transactions                # Keep log of file transfer statistics
  45.  
  46. # Uncomment the following three commands to enable long packets and
  47. # sliding windows.
  48. #
  49. # set send packet-length 256      # Increase default packet size
  50. # set receive packet-length 256   # Increase receive packet size too
  51. # set window 5                    # Allow multiple outstanding ack's
  52.