:READ KERMIT AUXLCL A1 SC00308 - Send non-protocol response to SOH-less "packet" SC00304 - Avoid BREAK handling at start of next transfer SC97164 - Update to level 4.3.2 SC97028 - Clear 'Kermit command error' condition correctly SC96165 - Correct handling of dates in 2000's (CMS) SC96158 - Never skip sending an I-packet while in remote mode SC96151 - Add system ID to INIT packets SC96122 - Avoid endless double transmission from windowed Kermit SC95174 - Implement REGET subcommand SC95108 - Prevent error-free transfers from halting TAKE files SC95059 - Preserve transmitted time tag for RESENT file SC95048 - Close files in SFS properly (CMS) SC95033 - Update to level 4.3.1 SC95032 - Allow Recovery into almost-full file system SC95023 - Fix RESEND for already-sent file, implement APC subcmd. SC94262 - Leave room for table expansion (CMS) SC94245 - More accurate statistics after server transfers SC94181 - Implement level-1 restart/recovery mode (CMS) SC94174 - WHATAMI option for file type SC94074 - NAK bad data packet instead of re-ACKing previous SC93355 - Detect remote dedicated GRAF terminals (CMS) SC93342 - Use date transmitted with file (CMS) :READ KERMIT SC00304 A1 ./ * SC00304 - Avoid BREAK handling at start of next transfer ./ I 07818000 $ 7818200 200 10/30/00 19:31:42 MVI STYPE,0 Stop special treatment of BREAK @SC00304 :READ KERMIT SC00308 A1 ./ * SC00308 - Send non-protocol response to SOH-less "packet" ./ R 01415400 $ 1415400 200 11/03/00 21:31:02 &KDATE SETC 'TEST 2000/11/03' @SC00308 ./ I 01867000 $ 1867100 100 11/03/00 21:31:02 CLI ERRNUM,ERRSOH Found no SOH? @SC00308 BE INPUTNOS I.e., not really a packet @SC00308 ./ I 01872000 $ 1872080 80 11/03/00 21:31:02 INPUTNOS OI FL4,NPS Leave protocol mode temporarily @SC00308 LA 14,NONPKT ASCII message of mild complaint @SC00308 ST 14,ASPKT Set address ... @SC00308 LA 14,LNONPKT @SC00308 ST 14,SNDPKL and length of "packet" @SC00308 KCALL SIO Send it, and assume no errors @SC00308 NI FL4,255-NPS Return to protocol mode @SC00308 B INPUTLUP Get next packet @SC00308 NONPKT DC AL1(AEXCL,CR) @SC00308 LNONPKT EQU *-NONPKT @SC00308 * @SC00308 ./ I 08690500 $ 8690600 100 11/03/00 21:31:02 TM FL4,NPS Non-protocol mode? @SC00308 BO *+8 Not a real packet sent if nonpro @SC00308 :READ ...