home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / b / krtdef.min < prev    next >
Text File  |  2020-01-01  |  1KB  |  76 lines

  1.     .sbttl    KRTDEF.MIN  Packet types (edited from VMS Kermit)
  2.     .ident    "V03.62"
  3.  
  4. ; /62/    31-May-93  Billy Youdelman
  5.  
  6.     .sbttl    Protocol V1.0 message types
  7.  
  8. MSG$ACK        =: 'Y&137
  9. MSG$BREAK    =: 'B&137
  10. MSG$DATA    =: 'D&137
  11. MSG$EOF        =: 'Z&137
  12. MSG$ERROR    =: 'E&137
  13. MSG$FILE    =: 'F&137
  14. MSG$NAK        =: 'N&137
  15. MSG$SND        =: 'S&137
  16.  
  17.     .sbttl    Protocol V2.0 message types
  18.  
  19. MSG$COMMAND    =: 'C&137
  20. MSG$GENERIC    =: 'G&137
  21. MSG$KERMIT    =: 'K&137
  22. MSG$RCV        =: 'R&137
  23.  
  24.     .sbttl    Protocol V4.0 message types
  25.  
  26. MSG$ATR        =: 'A&137
  27. MSG$SER        =: 'I&137
  28. MSG$TEXT    =: 'X&137
  29.  
  30.     .sbttl    Generic Kermit commands
  31.  
  32. GN$BYE        =: 'L&137
  33. GN$CONNECT    =: 'C&137
  34. GN$COPY        =: 'K&137
  35. GN$DELETE    =: 'E&137
  36. GN$DIRECTORY    =: 'D&137
  37. GN$DISK        =: 'U&137
  38. GN$EXIT        =: 'F&137
  39. GN$HELP        =: 'H&137
  40. GN$JOURNAL    =: 'J&137
  41. GN$LOGIN    =: 'I&137
  42. GN$PRINT    =: 'P&137
  43. GN$PROGRAM    =: 'P&137
  44. GN$QUERY    =: 'Q&137
  45. GN$RENAME    =: 'R&137
  46. GN$SEND        =: 'M&137
  47. GN$SUBMIT    =: 'S&137
  48. GN$TYPE        =: 'T&137
  49. GN$VARIABLE    =: 'V&137
  50. GN$WHO        =: 'W&137
  51.  
  52.     .sbttl    Acknowledgment modifiers (V4.0)
  53.  
  54. ABT$ALL        =: 'Z&137
  55. ABT$CUR        =: 'X&137
  56. ABT$ERROR    =: 'E&137
  57.  
  58.     .sbttl    End of file packet modifier
  59.  
  60. EOF$DISCARD    =: 'D&137
  61.  
  62.     .sbttl    Send/receive states
  63.  
  64. STA.CCA        =:  100
  65. STA.ABO        =: 'A&137
  66. STA.ATR        =: 'H&137
  67. STA.BRK        =: 'B&137
  68. STA.COM        =: 'C&137
  69. STA.DAT        =: 'D&137
  70. STA.EOF        =: 'Z&137
  71. STA.FIL        =: 'F&137
  72. STA.INI        =: 'I&137
  73. STA.RIN        =: 'R&137
  74. STA.SIN        =: 'S&137
  75. STA.TYP        =: 'X&137
  76.