home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / e / v10.4 < prev    next >
Text File  |  2020-01-01  |  26KB  |  585 lines

  1.  7-Nov-89  0:24:39-GMT,26407;000000000001
  2. Return-Path: <fdc@watsun.cc.columbia.edu>
  3. Received: from cunixc.cc.columbia.edu by watsun.cc.columbia.edu (5.59/FCB)
  4.     id AA06601; Mon, 6 Nov 89 19:24:36 EST
  5. Received: from watsun.cc.columbia.edu by cunixc.cc.columbia.edu (5.59/FCB)
  6.     id AA09219; Mon, 6 Nov 89 19:21:56 EST
  7. Received: by watsun.cc.columbia.edu (5.59/FCB)
  8.     id AA06546; Mon, 6 Nov 89 19:20:10 EST
  9. Sender: Frank da Cruz <fdc@watsun.cc.columbia.edu>
  10. Date: Mon, 6 Nov 89 19:20:09 EST
  11. From: Christine M Gianone <cmg@watsun.cc.columbia.edu>
  12. To: Info-Kermit@watsun.cc.columbia.edu
  13. Subject: Info-Kermit Digest V10 #4
  14. Reply-To: Info-Kermit@watsun.cc.columbia.edu
  15. Queries-To: Info-Kermit-Request@WATSUN.CC.COLUMBIA.EDU
  16. Message-Id: <CMM.0.88.626401209.fdc@watsun.cc.columbia.edu>
  17.  
  18. Info-Kermit Digest         Mon, 6 Nov 1989        Volume 10 : Number 4
  19.  
  20. Departments:
  21.  
  22.   ANNOUNCEMENTS -
  23.         Announcing IBM Mainframe MVS/TSO Kermit-370 Version 4.1.005
  24.         Announcing Apple II Kermit Version 3.86
  25.         Announcing Kermit-12 Version 10f
  26.         Minor Release of Commodore Kermit
  27.  
  28.   KERMIT PROTOCOL -
  29.         Proposed Modification to "Set Warning"
  30.  
  31.   MOS-DOS KERMIT -
  32.         MS-DOS Printer Drivers Needed
  33.         MS-DOS Kermit Losing Characters at 19200 bps
  34.         MS-DOS Kermit Losing Characters with KEYB Drivers
  35.  
  36.   MISCELLANY -
  37.         Kermit over Ethernet
  38.         Kermit File Transfers on DECstation 3100
  39.         Problems with Kermit for the DECsystem-10
  40.         DECsystem-10 Kermit Macro Source Problem
  41.         Kermit Bootstrapping
  42.  
  43. Digest submissions may be sent to Info-Kermit@WATSUN.CC.COLUMBIA.EDU, requests
  44. for addition to or deletion from the Info-Kermit subscriber list to
  45. Info-Kermit-Request@WATSUN.CC.COLUMBIA.EDU or to KERMIT@CUVMA.BITNET.
  46.  
  47. Kermit files may be obtained over networks and by mail order.  On the
  48. Internetwork, use FTP to log in to host WATSUN, WATSUN.CC.COLUMBIA.EDU, a
  49. SUN-4/280 running UNIX (SUNOS 4.0), IP host number 128.59,39.2.
  50. 128.59.40.130.  Login as user anonymous (note, lower case), any password, and
  51. GET or MGET the desired files.  The Kermit files are in directories kermit/a,
  52. kermit/b, kermit/c, kermit/d, and kermit/e.  You can also get Kermit files
  53. over BITNET/EARN; to get started send a message with text HELP to KERMSRV, the
  54. Kermit file server, at host CUVMA.  For detailed instructions, read the file
  55. kermit/a/aanetw.hlp (AANETW.HLP on KERMSRV).  To order by mail, request a
  56. complete list of Kermit versions and an order form from Kermit Distribution,
  57. Columbia University Center for Computing Activities, 612 West 115th Street,
  58. New York, NY 10025 USA.
  59.  
  60. ----------------------------------------------------------------------
  61.  
  62. Date: Wed, 1989 Oct 11   20:44 EDT
  63. From: "John F. Chandler"   <PEPMNT@cfaamp.harvard.edu>
  64. Subject: Announcing IBM Mainframe MVS/TSO Kermit-370 Version 4.1.005
  65. Keywords: IBM 370 Kermit, MVS/TSO Kermit, TSO Kermit
  66.  
  67. This is to announce the release of Kermit-370 version 4.1.005 for TSO.
  68. This version is comparable to the recently released 4.1.005 for CMS.
  69. Version 4.1.005 has several improvements over 4.1.004.
  70.  
  71.  1. The common storage has been rearranged slightly to remain within
  72.     the 4K addressibility limit.
  73.  
  74.  2. A new, separate error condition is recognized when Kermit-TSO
  75.     receives a "packet" containing no start-of-packet character.  The
  76.     old response was the somewhat misleading "Bad packet count or
  77.     checksum."
  78.  
  79.  3. There is now provision for an accounting exit routine to be called
  80.     after completion of each batch of SEND or RECEIVE.  A sample routine
  81.     is available as IKCACT ASM (for CMS) and may be adapted to specific
  82.     needs.  Since the exit routine is optional, you must explicitly load
  83.     it with Kermit in the linkage editor.  The appropriate JCL has been
  84.     added to (but commented out) the installation job in IKTKER.INS.
  85.  
  86.  4. The installation batch job has also been updated to include the REUS
  87.     option on the LKED step, so that TTY-mode timeouts will work on
  88.     MVS/XA systems.  Also, conditional execution is now specified on the
  89.     assembly and link-editing steps to minimize the repercussions of any
  90.     errors in setting up the job.
  91.  
  92.  5. Perhaps most interestingly, Kermit-TSO now recognizes a syntax for
  93.     sending partial files by line numbers.  The syntax is
  94.  
  95.          SEND filespec<n-m>
  96.  
  97.     where "filespec" is any valid file specification, "n" is the first
  98.     line to send, and "m" is the last.  There must be no blank between
  99.     the file name and the "<".  Either "n" or "m" may be omitted (the
  100.     default is the start or end of the file, respectively), and the
  101.     hyphen may be left off as well if "m" is omitted.  The same syntax
  102.     may be used in a GET request (or, in many cases, a REMOTE TYPE
  103.     request) through a micro Kermit talking to a Kermit-TSO server.
  104.  
  105. Many thanks to the beta-testers, who put the new version through its
  106. paces and helped in identifying weaknesses in the implementation.
  107. There are two updates that were not included in this release because
  108. of inconclusive test results.  The first was designed to correct the
  109. problem of Kermit failing to executed a migrated KERMINI file, and
  110. the second to enable Kermit to recognize dataset modification dates
  111. maintained by the ASM2 package.  Anyone interested in testing these
  112. should send a note to John Chandler <PEPMNT@CFAAMP.HARVARD.EDU>.
  113.  
  114. [Ed. - And many thanks to you, John!  The new files are installed in
  115. the Kermit Distribution "B" area, kermit/b/ikt* on watsun for
  116. anonymous ftp access, and on KERMSRV@CUVMA as IKT* * for BITNET access.]
  117.  
  118. ------------------------------
  119.  
  120. Date: Tue Oct 31 19:04:55 1989
  121. From: Christine M Gianone <cmg@cunixc.cc.columbia.edu>
  122. Subject: Announcing Apple II Kermit Version 3.86
  123. Keywords: Apple II Kermit 3.86, ProDOS
  124.  
  125. This is to announce Apple II Kermit Version 3.86 for Apple II DOS and ProDOS,
  126. which replaces version 3.85 of January 1989, from Ted Medin,
  127. MEDIN-T@SHARK.NOSC.MIL.  The major changes include:
  128.  
  129.    1. ProDos QUIT is fixed
  130.    2. VT-100 emulation bug fixes
  131.    3. The program now works on the Apple//c+ now works
  132.    4. Blinking cursor when connected
  133.    5. Connect escape menu now has MODEM and QUIT added
  134.    6. Better handling of illegal characters in received filenames
  135.    7. Wildcard file transfer SEND no longer misses files
  136.    8. New installation procedure
  137.    9. New Apple Cat serial card driver
  138.   10. New file management commands LOCK, UNLOCK, and RENAME added
  139.   11. GET & SEND commands now allow two filespecs so one can change the name
  140.   12. Revised documentation, available in both ASCII and Postcript form
  141.  
  142. The changes are listed in more detail in the file APPAAA.NEW, along with
  143. credits to those who supplied new code, reported bugs, and so forth, including
  144. Ralph Carpenter, Les Ferch, Steve Kunz, Klaus Schnathmeier, and Dick Wotiz.
  145.  
  146. The new files are in app*.* in the various Kermit Distribution "A" areas, and
  147. can be ordered on Kermit Tape A.  Many thanks to Ted for his continued efforts
  148. in developing and supporting this program.
  149.  
  150. ------------------------------
  151.  
  152. Date: 05-October-1989
  153. From: lasner@cunixc.cc.columbia.edu (Charles Lasner)
  154. Subject: Announcing Kermit-12 Version 10f
  155. Keywords: PDP-8, PDP-12, VT-78, VT-278, DECmate, OS/8
  156. Xref: DEC PDP, See PDP
  157.  
  158. This is to announce the release and availability of a highly revamped KERMIT
  159. program for the complete family of Digital Equipment Corporation 12-bit
  160. computers, known as KERMIT-12 (or K12MIT), Ver.  10f.  Unlike its
  161. predecessors (K08MIT and K278, upon which it is partially based, as well as
  162. prior versions of KERMIT-12), KERMIT-12, as now distributed, will run on any
  163. PDP-8 model (8, Linc-8, 8/i, 8/l, 8/e, 8/f, 8/m, 8/a), PDP-12, VT-78, or
  164. DECmate (VT-278, aka DECmate I, DECmate II, DECmate III, DECmate III-plus)
  165. under any OS/8 family member operating system.  Proper operation is
  166. accomplished automatically.  Companion utilities are provided to deal with
  167. "ASCII-fied" binary files in ENCODE format (a mechanism designed by Charles
  168. Lasner and Frank da Cruz as a proposed successor to BOO format); ENCODE
  169. format has been employed to distribute the binary portion of this release of
  170. KERMIT-12.
  171.  
  172. Due to the myriad port requirements of the various models, conditional
  173. parameters have been provided in the source (as well as a separate patching
  174. file) for models prior to DECmate I.  The program auto-configures for all
  175. models of DECmate; parameters are available to select the DECmate ports
  176. (DP278, communications, printer, etc.)  where applicable.
  177.  
  178. Many improvements have been provided to get this KERMIT "up to speed"
  179. relative to other KERMITs.  KERMIT-12 has been tested successfully with many
  180. KERMIT implementations and will run at the maximum baud rate (and sometimes
  181. beyond the DEC-stated limit!) of the relevant interface.  Any console
  182. terminal configuration acceptable to OS/8, etc. can be used at any baud rate
  183. as long as local flow-control protocol is obeyed; remote flow control can be
  184. disabled at console speeds higher than the remote line rate.  Connect mode
  185. I/O is fully ring-buffered in all directions with local flow control always
  186. enabled for all console terminal operations.  (This should satisfy all
  187. console terminal requirements ranging from 110-baud teletypes to built-in
  188. 350-Kbaud VT-220 emulators, since any of the gamut of these ASCII terminals
  189. could be the system console terminal for any of the KERMIT-12 supported
  190. computer configurations!).
  191.  
  192. KERMIT-12 will run anywhere OS/8 does, so it runs on any perfect look-alike
  193. suitably configured.  Some known compatibles are:
  194.  
  195.  - TPA made in Hungary, this machine is an 8/l except for the silkscreened
  196.    letters which are Magyar, not English.
  197.  - Fabritek MP-12
  198.  - Intersil Intercept
  199.  - Pacific CyberMetrix PCM-12
  200.  - Digital Computer Controls DCC-112 and DCC-112H
  201.  - Computer Extensions CPU-8 (a drop-in replacement for the 8/e or 8/a cpu
  202.    for a PDP-8/A-400 or -600 hex-wide box)
  203.  - Computer Extensions SBC-8 (a single-board computer -8 compatible based
  204.    on the 6120 like a DECmate, but compatible with -8 peripherals, not
  205.    DECmate peripherals; it also supports up to 16 comm ports)
  206.  
  207. Various emulators are available for PDP-10, 15 and the IBM-PC which will
  208. also support KERMIT-12 if suitably configured.
  209.  
  210. Distribution files are available from CUCCA.  Testing is under way for some
  211. of the more obscure configurations (e.g., DECmate III with comm port);
  212. volunteers are welcome for this task.  The author can provide copies to
  213. interested parties on virtually all of the popular PDP-8 media on a
  214. time-available basis.
  215.  
  216. [Ed. - Many thanks, Charles!  The files are in Kermit Distribution area D
  217. with prefix K12, and the previous PDP-8 versions having prefixes K08 and
  218. K278 have been retired.  Internet users may ftp the files as kermit/d/k12*,
  219. and BITNET users can get them from KERMSRV at CUVMA as K12* *.]
  220.  
  221. ------------------------------
  222.  
  223. Date: Thu, 10 Aug 89 17:47:01 EST
  224. From: ray@maxwell.physics.purdue.edu (Ray Moody)
  225. Subject: Minor Release of Commodore Kermit
  226. Keywords: Commodore 64 Kermit
  227.  
  228. Commodore Kermit has been upgraded from version 2.2(70) to 2.2(73).  We have
  229. decided to only increment the minor revision number because we have only
  230. changed three bytes!  One byte fixes a bug in the parser that caused it to
  231. claim that a valid command was unrecognizable when ESC was pushed.  Another
  232. byte fixes a timing problem where some C64s would not be able to operate
  233. with some 1200 baud modems.  (And, of course, this bug never happens on a
  234. C128 running in C64 compatibility mode, which I used to test things.  Sigh).
  235. The third byte changes the minor revision number to 73.
  236.  
  237. If you have Commodore Kermit 2.2(70), you can upgrade without downloading
  238. anything as follows:
  239.  
  240.     1. Turn on/reset machine (into C-64 mode if on a C-128).
  241.  
  242.     2. Type: LOAD "KERMIT",8
  243.  
  244.     3. Type: POKE 3393,32
  245.              POKE 19930,51
  246.              POKE 26539,29
  247.      
  248.     4. Type: SAVE "@0:KERMIT",8
  249.  
  250. Ray
  251.  
  252. [Ed. - Thanks Ray.  The updated source and hex files have now replaced the
  253. old ones in the Kermit Distribution "A" areas on watsun and CUVMA.
  254. Commodore 64/128 Kermit files are prefixed as C64*.*.]
  255.  
  256. ------------------------------
  257.  
  258. Date: Thu, 12 Oct 89 16:07:38 -0500
  259. From: Gregg Wonderly <gregg@ihlpb.att.com>
  260. Subject: Proposed Modification to "Set Warning"
  261. Keywords: Kermit Protocol, WARNING
  262.  
  263. I would like to propose that the "set warning" command be phased out in
  264. favor of a new set of commands, namely the commands:
  265.  
  266.         set file exists replace
  267.         set file exists rename
  268.         set file exists skip
  269.         set file exists ask
  270.  
  271. These commands would be added to kermit implementations wishing to have all
  272. of these features.  The first two eliminate the need for "set file warning"
  273. (which is not really a warning).
  274.  
  275. The behavior of the first two are equivalent to "set file warning off" and
  276. "set file warning on" respectively.  The second two would extend KERMIT in
  277. the following way.
  278.  
  279. When "set file exists skip" is in effect, the KERMIT requesting a file via a
  280. GET or RECEIVE would answer the "F" packet with an "X" packet when the file
  281. specified in the "F" packet already exists on the requesting machine.  It
  282. would then move to a state which would ignore subsequent "D" packets thus
  283. throwing away the file if the sending KERMIT did not understand "file
  284. cancel" (the worse case which would only happen in very limited KERMITS).
  285. This would allow a GET command involving wild cards to be restarted at the
  286. point that it failed due to transmission failures.
  287.  
  288. When "set file exists ask" is in effect, the above behavior is controlled by
  289. the answer to a prompt that is issued to the user.  A positive
  290. acknowledgement (perhaps just pressing the y key or y and return) would
  291. cause the file to be transfered, and negative acknowledgement from the user
  292. would cause the file to be "skipped".  Of course the prompt could ask the
  293. question in such a way as to reverse this logic.
  294.  
  295. I have implemented this in C-Kermit with no real problems.  It comes in very
  296. handy for the case that I described above with wild cards.
  297.  
  298. Comments?
  299.  
  300. gregg.g.wonderly@att.com  (AT&T Bell Laboratories, or ihlpb!gregg)
  301.  
  302. [Ed. - Good ideas, Gregg.  We've actually been considering adding them, in
  303. some form, to the protocol for some time.  In fact, you may have noticed
  304. something called SET FILE SUPERSEDE in the Kermit book.  But better to combine
  305. all this behavior within a single SET FILE command as you suggest.  Look for a
  306. proposal in the next Info-Kermit.]
  307.  
  308. ------------------------------
  309.  
  310. Date: Mon Nov  6 16:12:36 1989
  311. From: Christine M Gianone <cmg@watsun.cc.columbia.edu>
  312. Subject: MS-DOS Printer Drivers Needed
  313. Keywords: MS-DOS Kermit Printer Support
  314.  
  315. For inclusion with MS-DOS Kermit 3.0, to be announced for beta testing
  316. within about a month, we need public domain (or copyright but freely
  317. sharable, like Kermit itself) printer drivers:
  318.  
  319.  - A serial printer driver that does Xon/Xoff flow control with the printer.
  320.  
  321.  - Graphics printer drivers that will reproduce Kermit's Tektronix
  322.    graphics screens on various kinds of printers (we currently have
  323.    one of these, for the EGA/Epson combination).
  324.  
  325.  - Text printer drivers that convert between IBM PC special characters in
  326.    various code pages (particularly the European accented vowels, etc) and
  327.    the character sets of various printers (like Epson, etc).
  328.  
  329. If you have any programs like this and can contribute them in source-code
  330. form, please contact me directly.  Thank you.
  331.  
  332. ------------------------------
  333.  
  334. Date: Friday, 17 February 1989  04:33-MST
  335. From: enea!kullmar!pkmab!ske@uunet.uu.net (Kristoffer Eriksson)
  336. Subject: MS-DOS Kermit Losing Characters at 19200 bps
  337. Keywords: MS-DOS Kermit Performance
  338.  
  339. In article <943@starfish.Convergent.COM>, cdold@starfish.Convergent.COM 
  340. (Clarence Dold) writes:
  341. > From article <667@pkmab.se>, by ske@pkmab.se (Kristoffer Eriksson):
  342. >> When I use MS-kermit (ver 2.3*) at 19200 bps on an ALR 386/220 or at
  343. >> 9600 bps on a Compaq Deskpro 286, and type anything at the same time
  344. >> as I receive something, kermit beeps at me and loses received characters.
  345. >
  346. > If you are running UNIX, make sure that stty -a returns ixon ixoff -ixany.
  347. > The default on our systems is -ixoff ixany, the result being that
  348. > when Kermit gives an XOFF, your next keystroke is seen as IXANY, and turns
  349. > the flow back on.
  350.  
  351. My principal use of MS-Kermit is indeed for connecting to UNIX systems. And
  352. indeed I usually use ixon -ixoff ixany. But I've tried your advice now, and it
  353. didn't help at all.
  354.  
  355. I made some more extensive tests, and found that Kermit starts beeping and
  356. losing characters almost immediately when I type anything while output is
  357. going on to the screen, but starts emitting xoff's much later. (I do have flow
  358. control set to xon/xoff in Kermit.)
  359.  
  360. I even lose characters when there are less-than-one-line bursts of output
  361. with pauses in between (and I type heavily), in which case Kermit couldn't
  362. possibly need flow control.
  363.  
  364. The problem occurs when I use 19200baud on a 24 * 80 screen.  It also occurs
  365. when I use kermit at 9600 on a 24 * 132 screen.
  366.  
  367. In Tektronix mode, no UART overruns occur, indicating that Kermit can handle
  368. these high speeds with flow control.
  369.  
  370. My diagnosis was more or less confirmed when I tried to use Procomm 2.4.2.
  371. Same problem there.
  372.  
  373. Casper H.S. Dik
  374. University of Amsterdam     |                 dik@uva.uucp
  375. The Netherlands             |                 ...!uunet!mcvax!uva!dik
  376.  
  377. [From jrd - The real problem is the keyboard code in the Bios (plus any
  378. interceptors) which is turning off interrupts far too long on each
  379. keystroke.  Look for electronic keyclickers and shut them off completely. My
  380. early model DELL 310 has such and loses characters.  The beep is my
  381. indication that one or more characters have arrived at the serial port with
  382. none being removed, an overrun condition; beep replaces the lost
  383. character(s). With key clicking off there is no problem operating at very
  384. high speeds (> 38400 baud).]
  385.  
  386. ------------------------------
  387.  
  388. Date: Tuesday, 21 February 1989  14:57-MST
  389. From: mcvax!kth!enea!kullmar!pkmab!ske@uunet.uu.net (Kristoffer Eriksson)
  390. Subject: MS-DOS Kermit Losing Characters with KEYB Drivers
  391. Keywords: MS-DOS KEYB Drivers
  392.  
  393. I have discovered that this character-loss problem occurs when I use a KEYB
  394. to remap the keyboard layout for our national requirements.  When I use
  395. plain US keyboard layout, Kermit doesn't beep, and doesn't lose characters.
  396.  
  397. I usually use the Swedish layout (obviously because I live in Sweden, and
  398. have Swedish key-caps).  The command is KEYB SV (except for directory
  399. names), and I use MSDOS 3.30.  I've also tried the UK layout.  It had the
  400. same problem.  The US layout on the other hand, works fine, and it doesn't
  401. matter how I get to it. I can switch to it by hitting CTRL-ALT-F1, or load
  402. it with the command KEYB US, och just not load the Swedish layout.
  403.  
  404. Does anyone know why KEYB has this undesirable effect?
  405.  
  406. I still think that not even all users that do use KEYB have this problem.
  407. Why? Are they just fortunate enough to have a 16550 on their serial port?
  408. (That is not likely, I think.)
  409.  
  410. Kristoffer Eriksson, Peridot Konsult AB, Hagagatan 6, S-703 40 Oerebro, Sweden
  411. Phone: +46 19-13 03 60   !  e-mail: ske@pkmab.se
  412. Fax:   +46 19-11 51 03   !  or      ...{uunet,mcvax}!enea!kullmar!pkmab!ske
  413.  
  414. [From jrd - Yes, the keyboard helpers of DOS have code which turns off
  415. interrupts for very long intervals, for each keystroke. The effect has been
  416. noted in a number of countries.  Reports from the UK indicate that some
  417. vendors are providing improved helpers which eliminate the problem.  There is
  418. no clear reason why that code needs to turn off interrupts at all, and the
  419. same code has probably been used in all the CodePage keyboard routines.]
  420.  
  421. [Ed. - There must be something different between the USA and Sweden.  If we
  422. give the DOS command KEYB SV,850 on US-model PC/ATs or PS/2s running DOS
  423. 3.30, Kermit 2.32/A works perfectly.  So perhaps Swedish DOS is not the same
  424. as USA DOS???]
  425.  
  426. ------------------------------
  427.  
  428. Date: Fri, 6 Oct 89 11:33 EDT
  429. From: "Vivek Khindria HSC-2D2 x2676 C.S.U." <KHINDRIA@HSCvax.McMaster.CA>
  430. Subject: Kermit over Ethernet
  431. Keywords: Ethernet, MS-DOS Kermit Network Support
  432.  
  433. We use a package from Beame and Whiteside (Canadian) that allows serial
  434. communication to be redirected across Ethernet via TCP/IP.  One version
  435. works with any serial communication package.  But you need to put a loopback
  436. plug on the serial port.  The other version of this software works the
  437. communication packages that use INT14.  The workstation need not even have a
  438. serial port.
  439.  
  440. The program will respond to all HAYES commands...ATH...ATZ etc..  We are
  441. very happy with this package.  If you need more info send me an email note.
  442.  
  443. Vivek Khindria@HSCvax.McMaster.CA
  444. Faculty of Health Sciences
  445. McMaster University
  446. Hamilton, Ontario Canada
  447.  
  448. ------------------------------
  449.  
  450. Date: 1 Sep 89 18:39:14 GMT
  451. From: rr@csuna.cs.uh.edu (Ravindran Ramachandran)
  452. Subject: Kermit File Transfers on DECstation 3100
  453. Keywords: C-Kermit for DECstation 3100, DECstation
  454.  
  455. Has anyone got C-Kermit running on a DecStation 3100, and been able to send
  456. very large files from a PC connected to a DecServer port?  Or even a Mac on
  457. the DecServer line?  I've been struggling with it for a while now. I'm able
  458. to send to my VMS machine without any trouble, but the RISC/ULTRIX combination
  459. keeps getting timed out.  I used the Kermit from Columbia, and did a 'make
  460. bsd' to get my executables.
  461.  
  462. I am able to send files from my DecStations to the PC, but not the reverse.
  463. Could this be because the RISC machines are much faster? Is there any way
  464. to control this? The message that I get when it times out is,
  465. Unable to receive an acknowledgment from the host
  466.  
  467.  -- Ravi.
  468.  
  469. [Ed. - The problem is most likely in your DECserver.  You may have to
  470. configure it so that its input and output buffers are BOTH big enough to
  471. hold the largest Kermit packets you are trying to send.  100 would be a good
  472. number, use a bigger number if you are using long packets.  You should also
  473. try to vary the flow control settings (Xon/Xoff -- turn it off if it is on,
  474. or vice versa).  Most people have reported success with C-Kermit on the new
  475. DECstations, but that has been with the new, as-yet-unreleased version that
  476. you can find in ~kermit/test on watsun.] 
  477.  
  478. ------------------------------
  479.  
  480. Date: 09/26 23:57:35
  481. From: Mike Freeman
  482. Subject:  Problems with Kermit for the DECsystem-10
  483. Keywords: DECsystem-10 Kermit
  484.  
  485. PROBLEM:
  486.     .SET WATCH FILES
  487.  
  488.     .R KERMIT
  489.  
  490.     [FL21: DSKD0:KERMIT.INI[5,34]]
  491.     [FL21: DSKE0:KERMIT.INI[10,50]]
  492.     ?
  493.     ?Illegal UUO at user PC 434262
  494.     .
  495. DIAGNOSIS:  The fix in K10MIT.BWR for the problem encountered when TAKEing
  496. files after INI:KERMIT.INI has been read but no KERMIT.INI exists in the
  497. user's PPN caused Kermit to become confused when a KERMIT.INI
  498. *did* exist in the user's PPN after INI:KERMIT.INI had been read.
  499.  
  500. CURE:  (see K10MIT.BWR)
  501.  
  502. PROBLEM: When Parity is set to None and the Block-check-type is set to
  503. 3-Character-CRC-CCITT, binary file transfers between Kermit-10 and Kermit
  504. running on microcomputers either fail or are incorrect.
  505.  
  506. DIAGNOSIS: In the module K10MSG.BLI, in the routine CALC_BLOCK_CHECK which
  507. calculates the block-check for a character-string, in the code for THE case
  508. in which the 3-Character-CRC-CCITT is used, there is an IF-clause which
  509. specifies the circumstances in which only seven bits of each eight-bit
  510. character are to be used in the Block-check calculation.  As distributed,
  511. high-order bits of characters are to be ignored when Parity None is in
  512. effect.  This is incorrect.  The high-order bit of each character should be
  513. ignored when Parity is set to anything but None.
  514.  
  515. CURE:  In the module K10MSG.BLI, in the routine CALC_BLOCK_CHECK,
  516. in the 3-Character case, change the EQL in the IF-clause to a
  517. NEQ.  (see K10MIT.BWR)
  518.  
  519. Please return mail to me via <mailer%uwalocke@bitnet.wiscvm.wisc.edu>
  520. with the subject "dec10%bpa".
  521.  
  522. Mike Freeman, Bonneville Power Administration
  523. Vancouver WA, Telephone (206)690-2307
  524.  
  525. [Ed. - Thanks, Mike.  The full text of your message, and the FILCOMs (diffs)
  526. have been added to the file K10MIT.BWR in the Kermit Distribution "B" areas.]
  527.  
  528. ------------------------------
  529.  
  530. Date:     Thu, 12 Oct 89  09:58:59  EDT
  531. From: "C. BACON" <CRB%NIHCUDEC@cuvmb.cc.columbia.edu>
  532. Subject:  DECsystem-10 Kermit Macro Source Problem
  533. Keywords: DECsystem-10 Kermit
  534.  
  535. At some point, K10MIT.MAC apparently went through a filter someplace which
  536. wrapped lines to about 80 characters, apparently always at a "grammatically
  537. acceptable" character position, like a space or punctuation.  The result was
  538. a field day for MACRO-10's error reporter.
  539.  
  540. A very few of these wraps were of strings which didn't raise an error,
  541. including at least one "(-1)" which was at the end of a macro invocation.
  542.  
  543. I can easily find all those which raised assembler errors, but I don't know
  544. about some which might not.
  545.  
  546. The funny part is that I have discovered some lines > 80 characters long; I
  547. wonder if they were added after the wrap disaster.  If so, that would
  548. suggest modifications to the code were made without the result being
  549. completely recompiled!!
  550.  
  551. Of course I thank everyone concerned, yourself, Dan Norstedt, and the Kermit
  552. project at CUCCA, for helping us keep the DECsystem-10 people happy.  More
  553. later...  If I can get K10 built, should I send K10MIT.MAC and any others
  554. which appear to have been similarly wrapped?  Of course I'll send them by
  555. Unix mail, not Bitnet!
  556.  
  557. Chuck Bacon, aka CRB@NIHCUDEC or crtb@alw.nih.gov
  558.  
  559. [Ed. - Chuck, by all means try to put together a working version.  Also,
  560. note the message immediately above.]
  561.  
  562. ------------------------------
  563.  
  564. Date: Wed, 11 Oct 89 17:44:47 GMT
  565. From: kodak!ektools!kadsma!fuller@cs.rochester.edu (Bill Fuller)
  566. Subject: Kermit Bootstrapping
  567.  
  568. I have been told that there is a small program that you can type in on a
  569. system that will allow you to asynch over a full version of Kermit.  Has
  570. anyone heard of this micro-kermit code?  If so, does anyone know where I
  571. could get it?  Thanks in advance,
  572.  
  573. Bill Fuller
  574.  
  575. [Ed. - The Kermit book, pp.186-188, lists a "baby Kermit" program in BASIC
  576. for the IBM PC, which you can type in.  For raw capture without protocol,
  577. you can use methods that are listed or described in many places, depending
  578. upon what kind of computer you have.  For example, the procedure for CP/M
  579. is given in detail in the CP/M Kermit User Guide.]
  580.  
  581. ------------------------------
  582.  
  583. End of Info-Kermit Digest
  584. *************************
  585.