home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / c-kermit / ckc04f.txt < prev    next >
Text File  |  2020-01-01  |  22KB  |  471 lines

  1. CKUV4F.UPD
  2.  
  3. This file contains the edit history of C-Kermit version 4F, April 1989 through
  4. August 1989.  Version 4F was never formally released, but became the basis for
  5. version 5A.
  6.  
  7. 4F(095) Thu Aug 31 20:04:59 1989
  8.  
  9. Fix a bug which has been in ckucmd.c forever -- can't believe nobody ever
  10. noticed it before!  If cmnum() is called as the last field in a command, and
  11. it is supplied a default value, and the user types carriage return instead of
  12. a number, then the default was not supplied.  The fix was in cmfld(), to
  13. copy the default into the atom buffer, rather than just pointing to it.  This
  14. fixes the problem with the transmit command not waiting for the echoed
  15. linefeed when the user types "transmit foo.bar" and does not supply the final
  16. field, the turnaround character, which was supposed to be linefeed (10) by
  17. default.  Also, fix transmit so it echoes right on both full and half duplex
  18. connections.
  19.  
  20. Addition of support for a variety of AT&T modems in ckudia.c, from Eric F.
  21. Jones at AT&T, including the 2212C, 2224B, 2224CEO, and 2296A (should also
  22. work with 2224G and 2248A, but not tested).  Also the AT&T Digital Terminal
  23. Data Module (DTDM) found in the telephones connected to the AT&T System 85
  24. digital PBX.
  25.  
  26. In ckutio.c: (a) for AT&T-based systems, modify tthang() to not wait for
  27. carrier when reopening the device, (b) don't attempt to use the TIOCSINUSE
  28. ioctl() unless TIOCSINUSE is a defined symbol.
  29.  
  30. Several minor cosmetic changes for the benefit of VMS.
  31.  
  32. 4F(094) Sat Aug 19 18:29:14 1989
  33.  
  34. C-Kermit fails to write out one or more output file buffers on the AT&T
  35. 3B2/300, but works OK on all other systems tested, including other AT&T
  36. systems.  Added bullet-proofing and debugging to zmchout() in ckufio.c,
  37. and in ckcpro.w, checked decode()'s return code and cancelled the protocol
  38. transaction upon decode() failure.  Also, commented out a trailing token
  39. after an #endif in ckuusr.c.
  40.  
  41. 4F(093) Wed Aug 16 22:22:05 1989
  42.  
  43. Many places ckudia.c, ckucon.c, ckuscr.c, and ckutio.c -- change the type
  44. of functions that are passed as arguments to signal() to SIGTYP rather than
  45. no type at all (i.e. int).  This should prevent many compiler warnings and
  46. maybe even some runtime problems?
  47.  
  48. In ckcfns.c, fix the file counting (ffc++) so that correct(er) file sizes are
  49. reported by 'statistics'.
  50.  
  51. 4F(092) Fri Aug 11 15:06:39 1989
  52.  
  53. Add code for converting file time to seconds since Jan 1, 1970 GMT.
  54. Not used yet, but will be used in setting Unix file date from incoming
  55. file attributes.  From David MacKenzie and Michael Haertel.  (This code is
  56. enclosed in #ifdef NOY_YET brackets, because it causes numerous compile &
  57. link time errors on certain systems).
  58.  
  59. Rename memcpy() replacement in ckudia.c to xcpy(), to eliminate core dumps
  60. that the memcpy replacement caused on the ATT7300 and perhaps other systems.
  61. Peter Mauzey, AT&T.
  62.  
  63. makefile addition for ATT6300, Peter Mauzey, AT&T.  makefile addition for
  64. Convex, Peter Mossel, Columbia Univ Health Sciences.
  65.  
  66. 4F(091) Sat Aug  5 14:29:41 1989
  67.  
  68. Fix send-packet size recalculation to not respond to spurious errors like
  69. timout-retransmission of initial S-packet.
  70.  
  71. Reorganize code that responds to MAIL and REMOTE PRINT commands so that it's
  72. in the system-dependent module, ckufio.c.  This will require adding zmail()
  73. and zprint() functions to all other ck*fio.c modules.
  74.  
  75. Make a couple small changes to ckotio.c for OS/2, and in ckuusr.c also include
  76. signal.h and setjmp.h for OS/2 (Rob Kedoin, blessed by Chris Adie).
  77.  
  78. 4F(090) Fri Jul 28 20:08:52 1989
  79.  
  80. Fixes from Bob Larson:
  81. Remove duplicate call to sysinit() from ckcmai.c.
  82. Don't call strlen() on a constant in a loop (tilde_expand(), ckufio.c).
  83. A couple OS-9 specific changes.
  84.  
  85. Put definition of memcpy() function into ckudia.c, because it is not available
  86. to certain C compilers (used in Microcom modem support).
  87.  
  88. Attempt to make the Apollo SR10-BSD version compile correctly:
  89. Change all "#ifdef apollo" back to "#ifdef aegis", and remove -Uapollo
  90. from the sr10-bsd makefile entry.  This way, "apollo" is still defined,
  91. which it apparently needs to be when #include'ing <stdio.h>, otherwise
  92. there are horrible compiler errors regarding _bufsiz, etc.
  93.  
  94. 4F(089) Thu Jul 20 19:59:25 1989
  95.  
  96. OS-9/68K support from Bob Larson, USC.  The main difference between OS-9 and
  97. Unix (from Kermit's point of view) is that the OS-9 file system uses CR as
  98. a line terminator, rather than LF.  The OS-9 specific modules are ck9con.c,
  99. ck9fio.c, and ck9tio.c
  100.  
  101. Other modules had "#ifdef OSK"..."#endif" conditionals added: ckuus*.*,
  102. ckcmai.c, ckcdeb.h, ckucmd.c, mainly having to do with \r, \n differences
  103. between OS-9 and Unix.
  104.  
  105. Bob also found and corrected a lot of mistakes in the command parser --
  106. extraneous dereferencing of pointers, misgrouped parentheses in numerous calls
  107. to cmcfm(), etc.
  108.  
  109. Bob also replaced Jim Knutson's Microcom modem support in ckudia.c with 
  110. a different style of support for this modem.  As Bob says, "the two
  111. versions make very different assumptions on how the modem will be configured
  112. and used.  Mine assumes the modem is configured for reasonable interactive
  113. use, and will try the autobaud sequence if the modem doens't respond to
  114. a return.  The other one forces the configuration into modes that may be
  115. slightly easier for a computer to understand, but make it hard to use
  116. interactively."  Note, Bob makes extensive use of memcpy().  I hope that all
  117. the systems that use ckudia.c support this function!
  118.  
  119. Also in ckudia.c, add support for additional responses from Hayes-like
  120. modems: NO DIALTONE, BUSY, NO ANSWER, RING, ERROR.  From Bo Kullmar, Kista,
  121. Sweden.
  122.  
  123. Also in ckudia.c, add a couple sleep(1)'s for Rolm CBX dialing.  This made
  124. it work, finally (at least here at Columbia).
  125.  
  126. In ckutio.c, function tthang(), remove the closing and reopening of the tty
  127. for BSD42.  It doesn't seem to be necessary.
  128.  
  129. In ckufio.c, add a little bullet-proofing to zsout() and zopeno(), to prevent
  130. the case where you could crash the program by typing the command "log debug"
  131. twice in a row.
  132.  
  133. Fix the TRANSMIT command to be interruptible by Ctrl-C, by getting rid of
  134. longjmp, which apparently leaves you executing on the wrong stack.  Live and
  135. learn...  Put all references to signal handling in the TRANSMIT command
  136. (ckuusr.c) within #ifndef OS2...#endif conditionals.
  137.  
  138. Make the "size" message on incoming files in local mode less space consuming,
  139. and put a space between it and the "A".
  140.  
  141. From Bo Kullmar in Sweden, fix ckucon.c not to give "Can't get character"
  142. message if myread() returned its special error 9999.
  143.  
  144. 4F(088) Wed Jul 19 20:54:06 1989
  145.  
  146. These releases are flying thick and fast!  This one has fixed-up support for
  147. Masscomp/Concurrent RTU, plus a couple minor cosmetic improvements from
  148. Farrel Woods, ftw@westford.ccur.com (Concurrent, formerly Masscomp):
  149.  
  150. The first is to get around a bug/inconsistency in RTU signal handling in the
  151. Berkeley environment.  It turns out that if a user handles a signal (SIGTSTP),
  152. then any pending system call will return with EINTR when the program is
  153. resumed. This caused Kermit to exit after being resumed, since our library
  154. (e.g., getchar) will not re-try the system call.  Subsequent reads (and,
  155. getchars) will work alright.  The fix is set a flag before sending SIGSTOP to
  156. ourselves, and upon resumption, do an extra getchar if the flag was set.
  157. (yuck).
  158.  
  159. Masscomp/Concurrent was added to the herald.
  160.  
  161. The flag for the first bug was located in ckutio.c.  It seemed to be
  162. the place to put those kind of globals...
  163.  
  164. RTU as of version 4 uses Honey Dan Ber (sic?) uucp.  The lock files
  165. live in /usr/spool/locks.
  166.  
  167. Upon resuming after being suspended, call prompt() if not in background mode
  168. so that you know Kermit is paying attention to you again.
  169.  
  170. The Makefile was changed to build Kermit in the ucb universe, with the
  171. BSD42 flag turned on.
  172.  
  173. 4F(087) Wed Jul 19 11:35:09 1989
  174.  
  175. Hmmm....  A month ago, I merged in all of Chris Adie's OS/2 conditionals,
  176. and now all of that has disappeared!  I can't explain it.  Maybe there was a
  177. disk crash and the previous copies of the files were restored on top of the
  178. new ones?  Sigh...  Anyway, I did it again.  New copies of: ckcmai.c,
  179. ckucmd.c, ckudia.c, ckuscr.c, ckuusr.c, ckuus2.c, and ckuus3.c.
  180.  
  181. 4F(086) Tue Jul 18 11:52:16 1989 
  182.  
  183. Add missing #ifdef OS2's to ckcdeb.h and ckuusr.h.  Forgot these before, oops.
  184.  
  185. Change definition of tlog() and debug() when not defined to be the null
  186. string, instead of {}, to prevent problems with semicolons in if-else
  187. constructs (Steve Walton, Cal State Northridge).
  188.  
  189. In ckutio.c, function ttopen(), also put local line in no-echo mode for
  190. ATT Sys III/V, as is done for BSD (David MacKenzie, Environmental Defense
  191. Fund, Rockefeller Univ).
  192.  
  193. Major problems compiling on Apollo SR10 involving use of getchar() in
  194. ckucmd.c with "make sr10-bsd", reported & not yet fixed.
  195.  
  196. 4F(085) Fri Jul 14 13:19:00 1989
  197.  
  198. ckcfns.c: In opena(), save global file mode (i.e. transfer syntax, variable
  199. "binary") in variable "bsave".  Check incoming file type attribute ("), if
  200. any.  If text (A), set transfer syntax to binary for this file only.  If
  201. binary (B), set to binary for this file only.  In clsof(), restore global file
  202. mode from bsave.  This allows the sender to tell the C-Kermit receiver whether
  203. the file is being transferred in text or file mode, so that you don't have to
  204. type a "set file type { text, binary }" command on the C-Kermit receiver.
  205. This code has no effect if the sender does not send the file-type attribute,
  206. or if the C-Kermit receiver has "set attributes off".
  207.  
  208. 4F(084) Mon Jul 10 20:47:51 1989
  209.  
  210. Get rid of index() function in tilde_expand(), ckufio.c.  Some systems don't
  211. have it (like Xenix).
  212.  
  213. Fix directory command to allow ~name, and ~name/, as well as ~name/file.
  214.  
  215. Install missing help message for "set incomplete" and "set terminal".
  216.  
  217. 4F(083) Wed Jul  5 12:09:50 1989
  218.  
  219. Add support for RT PC AIX 2.2 to ckutio (mostly lockfile stuff) and makefile,
  220. from Ge van Geldorp, Netherlands).
  221.  
  222. Minor fixes to Zilog Zeus support from John R. Evans, IRS, Kansas City.
  223.  
  224. 4F(082) Mon Jul  3 15:19:22 1989
  225.  
  226. Don't try to output to debug log in cmdini() in ckuusr.c, because it's not
  227. open yet (Martin Maclaren, Bath Univ, UK).
  228.  
  229. Allow cd/cwd to also accept tilde notation (for user's home directory) in
  230. pathnames.  Required the addition of a new parsing function, cmdir(), to
  231. ckucmd.c.  Hacked it in as quickly as possible, mostly by killing stuff from a
  232. copy of cmifi().  Seems to work for SUNOS and Ultrix.  Hope it doesn't break
  233. all the other versions...
  234.  
  235. Add tilde expansion to cwd() function in ckcfns.c, so that server can also
  236. expand tildes in 'remote cwd' commands.  Also add tilde expansion in sinit()
  237. when C-Kermit server executes the 'get' command.  Also in rcvfil() so it can
  238. receive files into directories specified in tilde-notation.
  239.  
  240. Add tilde expansion to System-V based versions too.  Code for ckucmd.c from
  241. Dave MacKenzie at Rockefeller U.  Those who have experience with other kinds
  242. of systems (V7, Sys III, etc) should look at this code.  Should be simple to
  243. get it working for any Unix variant.  See #ifdef DTILDE.
  244.  
  245. Move tilde-expansion code from ckucmd.c to ckufio.c.  Tilde-expansion code
  246. is compiled based on existence of TILDE symbol, which is defined in ckcdeb.h.
  247.  
  248. Enable sending file timestamps from System V.  Code for ckufio.c from Dave
  249. MacKenzie.  See #ifdef TIMESTAMP.
  250.  
  251. Clear up some packet-length confusion in pwp's new sdahead() encode-ahead
  252. function, in ckcfns.c.  Previously, C-Kermit was sending slightly-longer-
  253. than-negotiated packets.
  254.  
  255. Fix pwp's modification to zopeni() in ckufio.c.  File input buffer was not
  256. being reset in all cases, resulting in leftover text from a previous transfer
  257. being prepended to the next transfer.
  258.  
  259. Add "make next" to makefile, Mic Kaczmarczik, UT Austin Computation Center
  260.  
  261.  
  262. 4F(081) Thu Jun 22 12:26:04 1989
  263.  
  264. Add makefile entry for Berkeley Unix 4.x with HoneyDanBer UUCP and clean up
  265. lock-file selection conditionals and code in ckutio.c (Paul Placeway),.
  266.  
  267. From David MacKenzie, a couple small patches to make ckutio.c compile
  268. correctly on recent versions of UNOS.
  269.  
  270. 4F(080) Mon Jun 19 20:51:41 1989
  271.  
  272. Merge in changes from Chris Adie, Edinburgh University, Scotland, for OS/2
  273. support:
  274.  
  275.  - New OS/2-specific modules:
  276.      ckocon.c (terminal emulation), ckofio.c, ckutio.c.
  277.  
  278.  - Minor changes to the following files under #ifdef OS2 conditionals:
  279.      ckcdeb.h, ckucmd.h, ckuusr.h, ckcmai.c, ckucmd.c, ckudia.c, ckuscr.c,
  280.      ckuusr.c, ckuus2.c, ckuus3.c.
  281.  
  282.  - Add new material to Chris's ckofio.c OS/2 file-system support module:
  283.      Limited file attribute support.
  284.      Paul Placeway's buffered file input and output.
  285.  
  286. Chris Adie's work was based on an older C-Kermit, and so this two-way merge
  287. was unavoidable.  The result is entirely untested and may not work at all, so
  288. those with OS/2 development systems are urged to debug it and send back the
  289. necessary fixes.
  290.  
  291. Change the interactive command parser, for BSD4.x only, to expand tildes in
  292. filenames in SEND, RECEIVE, DIRECTORY, LOG, and similar commands.  This code
  293. is all in ckucmd.c, under #ifdef BSD4 conditionals, in the cmifi() and cmofi()
  294. functions.  AT&T UNIX users are invited to adapt it to System III, System V,
  295. etc.
  296.  
  297. Add file creation date to attributes sent by C-Kermit (BSD 4.x only).
  298.  
  299. Change input() function in ckcfn2.c to avoid getting into retransmission loops
  300. when it receives an ACK for the previous packet or a NAK for the next packet.
  301.  
  302. Restore lost comment delimiter in ckcpro.w, on "<serve>I" line, which
  303. prevented type-2 or -3 block checks from being selected by the client.
  304.  
  305. Remove something that was added in 4F(077), i.e. using file descriptor for the
  306. terminal in packet mode.  It turns out that this prevented Kermit from
  307. sending/receiving files to/from standard input.
  308.  
  309. Changes for 4.1 BSD from Frank Prindle:
  310. Make setegid() and seteuid() calls in ckuusr.c and ckufio.c conditional
  311. upon BSD42, rather than BSD4, because 4.1 BSD doesn't support them.  In
  312. file ckutio.c, tthang() shouldn't close and open the ttyfd, and ttpkt()
  313. should choose the "old" line discipline.  Add special BSD41 entry in
  314. makefile.
  315.  
  316. Another one from Frank Prindle: When assigning an external line for local-mode
  317. operation, turn off ECHO bit in sg_flags.  This eliminates the problem of
  318. bizzare delayed echoing when connecting back to a remote system after a file
  319. transfer, which first appeared in 4E(072).  For the benefit of those still
  320. running versions between then and now, the fix is to find the following lines
  321. in function ttopen() in the file ckutio.c:
  322.  
  323. #ifndef UXIII
  324.     gtty(ttyfd,&ttold);                 /* Get sgtty info */
  325.  
  326. and add the following line immediately after them:
  327.  
  328.     if (xlocal) ttold.sg_flags &= ~ECHO; /* Turn off echo on local line */
  329.  
  330. In ckucmd.c, change the name of the function digits() to rdigits(), because
  331. digits is now apparently a reserved word on some systems, like NEC Astra XL
  332. 3.4 (Gary Holbrook).
  333.  
  334. Try to fix the hangup code.  In ckutio.c, function tthang(), where we close
  335. and reopen the line, if the reopen fails, kill the lock file.  Add message,
  336. "[hanging up]".  In ckucon.c, fix ^\h escape (hangup) in connect mode to wait
  337. until tty port reader fork terminates.  Add ^\q escape (hangup and quit from
  338. Kermit).  All this from Patrick Wolfe, Kuck & Associates, Inc, pat@kai.com.
  339.  
  340. "mail" has been changed to "Mail" to ensure that the Berkeley version will
  341. be used, which accepts a "-s" switch on the command line for subject.
  342.  
  343. Add support for Microcom ax9624 modem from Jim Knutson in ckudia.c.
  344.  
  345. Remove #include <sys/file.h> for Apollo aegis in ckutio.c (Martin Maclaren).
  346.  
  347.  
  348. 4F(079)
  349.  
  350. Add 'transmit' command for raw uploading.  For now, there's no way to
  351. interrupt it.
  352.  
  353. 4F(078)
  354.  
  355. Changes by Paul Placeway, Ohio State University, to speed up decoding of
  356. Kermit packets and writing out to files.  Also code from Paul to dynamically
  357. size outbound packets based on the frequency of retransmissions - the noisier
  358. the line, the shorter the packets, the cleaner the line, the longer the
  359. packets (up to the maximum negotiated length).
  360.  
  361. C-KERMIT FOR UNIX, CHANGES FROM VERSION 4E(072) TO 4F(077), 1 Apr 89
  362.  
  363. A somewhat major new release, in beta-test form (but if it tests ok,
  364. it can become a real release without requiring any further changes).
  365.  
  366. ATTRIBUTE PACKETS.  Minimal support for attribute packets added: ckcpro.w,
  367. ckcdeb.h, ckcfn2.c, ckufio.c, ckuus*.c.  C-Kermit can send Attribute packets
  368. containing system ID, file sizes (K and bytes), and encoding method (text or
  369. binary), and will honor positive and negative responses.  It will also receive
  370. Attribute packets (see below).  In the ckuus* modules, the command 'set
  371. attributes {on, off}' was added, to allow Attribute packet processing to be
  372. disabled in case of misunderstandings; it is enabled by default.
  373.  
  374. IMPORTANT: ckcpro.w calls a new function, sattr(), which is defined in
  375. ckcfn2.c.  The sattr() function, in turn, calls zsattr(), which MUST BE
  376. DEFINED in in each and every ck?fio.c module.  So far, it has only been
  377. defined in ckufio.c, for Unix.  Macintosh and VMS Kermit developers -- be sure
  378. to add this function to your system-dependent code.  In the future, a similar
  379. function will have to be added to ck?fio.c to modify an incoming file's
  380. attributes.
  381.  
  382. C-Kermit receives and processes attribute packets, and fills in an attribute
  383. structure.  So far, C-Kermit does nothing with these attributes except for
  384. "Disposition" (Attribute "+").  If the disposition is M, then the file is
  385. mailed to the designated address(es).  If the disposition is P, then the file
  386. is printed with the specified options.  These operations are currently done
  387. in the crudest possible way (via "system()"), and only for UNIX.
  388.  
  389. EFFICIENCY: Modifications from Paul Placeway at Ohio Statue University that
  390. dramatically speed up C-Kermit when sending.  Changes as follows:
  391.  ckcker.h - define a file input macro similar to getc(), and a buffer size.
  392.  ckufio.c - function zinfill() added to fill input buffer, zchin() modified
  393.             to use buffered input.  NOTE: zinfill() will have to be added to
  394.             all the other ck?fio.c modules (Macintosh, VMS, etc etc).
  395.  ckcfns.c - getpkt() totally rewritten and demodularized.  It used to be
  396.             pretty, but now it's fast.  getchx() and encode() copied inline.
  397.  
  398. The SET SERVER TIMEOUT command was added to control the rate at which the
  399. C-Kermit server issues NAKs during server command wait, 0 = no NAKs at all.
  400. Changes to ckuus*.c, ckuusr.h, ckcfns.c, ckcmai.c.  The server's periodic NAKs
  401. can interfere with originate/answer devices like digital PBXs or autodial
  402. modems, putting them in originate mode when the user wanted the device to be
  403. in answer mode.  SET SERVER TIMEOUT 0 can now be used in such situations.
  404.  
  405. MAKE C-KERMIT SEND NAKs: ckcpro.w, ckcfns.c, ckcfn2.c, ckcmai.c.  Up till now,
  406. C-Kermit has always responded to a corrupted packet or a timeout by resending
  407. its previous packet.  It turns out that when talking to a more generalized
  408. Kermit program -- i.e. one that provides for sliding-window packet transfer,
  409. where a window size of 1 is just a special case -- that it is better for
  410. C-Kermit to send NAK packets in response to corrupted packets or timeouts,
  411. which a sliding-windows Kermit will act upon immediately.  This is done by
  412. adding a flag variable, nakstate, in ckcmai.c.  This variable is set to 1 in
  413. ckcpro.w before rdata state is entered.  In the input() function (ckcfn2.c), a
  414. NAK is sent in response to a timeout or corrupted packet if nakstate != 0,
  415. otherwise the previous packet is resent, as before.  In function tinit()
  416. (module ckcfns.c) nakstate is reset to zero at the beginning of each
  417. transaction.
  418.  
  419. ckcpro.w: Cure a longstanding bug.  When in <sseof>Y state, if there's another
  420. file to send, the transition is to state ssfile, not ssdata!  The problem was
  421. that if C-Kermit was sending a file whose name began with X or Z, and the
  422. other Kermit echoed back the filename in the data field of the ACK packet (as
  423. C-Kermit itself does), the improper immediate transition into ssdata state
  424. caused the ACK data field to be checked for X or Z, which is the signal for
  425. file interruption.  The fix prevents the data packet protocol from looking in
  426. the ACK to the file header.  The reason it escaped notice for so long is that
  427. it could only happen when sending a wildcard group of files with names
  428. starting with X or Z and with SET FILE NAMES LITERAL (which forced the
  429. normally lowercase X's or Z's to be uppercase) from one C-Kermit to another
  430. C-Kermit.
  431.  
  432. ckcpro.w: Reformat and comment.  No longer try to preserve the illusion that
  433. Kermit is such a simple protocol it can fit on 2 pages...
  434.  
  435. ckcfns.c: In tinit(), set spktl = 0, so that a 'server' command given after
  436. some other command will transmit a NAK(0), rather than whatever the last
  437. packet happened to be (this bug had been there forever).  In sinit(), make
  438. sure that C-Kermit sends an error packet if a 'get' command to the C-Kermit
  439. server results in too many filenames.
  440.  
  441. ckwart.c: Change data type of state transition array from short to CHAR.  Save
  442. several more K.
  443.  
  444. VMS support: Add changes from Mark Buda & Barry Archer to ckuusr.c within
  445. "#ifdef vms" conditionals -- VMS-specific way to find init file, and special
  446. handling of DIRECTORY command.
  447.  
  448. ckuusr.c: Add some debugging info to trap().
  449.  
  450. ckuus2.c: In rdebu(), change reference to rdatap (which could sometimes
  451. be uninitialized) to data+1, which always works.  This one could cause core
  452. dumps with 'set debug on' at beginning of file transfer.
  453.  
  454. ckuus3.c: In screen(), always issue error or warning messages (even if
  455. in quiet or no-display mode).
  456.  
  457. ckutio.c: Many changes, mainly to prevent opening of terminal in O_NDELAY
  458. mode, skip the exclusive access baloney, hanging up, etc etc, when terminal is
  459. job's controlling tty.  Also, if terminal is job's controlling tty, use file
  460. descriptor 0 (stdin) rather than obtaining a new file descriptor on it.  This
  461. allows UNIX "idle line monitors" to properly detect Kermit activity and not
  462. log out Kermit users in the middle of 40-megabyte file transfers because the
  463. tty line appears to be idle.
  464.  
  465. ckufio.c and ckutio.c: Add UNOS support from David MacKenzie,
  466. edf@rocky2.rockefeller.edu.  Add function zinfill() for buffered file input,
  467. from Paul Placeway.
  468.  
  469. ckudia.c: Slightly better support for Hayes modems -- try to catch the case 
  470. where user dials out at 2400 but gets connected at 1200.
  471.