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

  1. To: C-Kermit Developers and Testers <kermit@columbia.edu>
  2. Reply-to: kermit@columbia.edu
  3. bcc: Frank da Cruz <fdc@watsun.cc.columbia.edu>,
  4.     Christine M Gianone <cmg@watsun.cc.columbia.edu>,
  5.     Jeffrey Altman <jaltman@watsun.cc.columbia.edu>,
  6.     Andrew Chee <achee@watsun.cc.columbia.edu>, vace@columbia.edu,
  7.     ckermit@watsun
  8. Subject: C-Kermit 6.1 Beta.02
  9.  
  10. This is to announce C-Kermit 6.1 Beta.02.  I'm still not announcing it to
  11. the general public, but this time it's to a wider list, which I've moved
  12. out of the headers.  For the benefit of those of you who have not seen the
  13. earlier Alpha and Beta announcements, I enclose a VERY brief summary of the
  14. new features of C-Kermit 6.1 at the end.
  15.  
  16. Let me know if you want to be removed from this mailing list (mailings will
  17. continue to go out about once or twice a month until C-Kermit 6.1 is done).
  18.  
  19. KERBEROS
  20.  
  21. The big item in Beta.02 is Kerberos authentication AND encryption for UNIX.
  22. It looks like the winner of that programming contest I announced a few weeks
  23. ago is... me :-)á There is now a new CONNECT module for Kerberos builds,
  24. ckucns.c (instead of ckucon.c), that uses select() rather than fork() as its
  25. control mechanism (more about this in the UNIX section below), thus allowing
  26. the Kerberos libraries to share variables, as they must.
  27.  
  28. So far, there is exactly one Kerberized target in the makefile.  It is for
  29. Linux with the Cygnus Kerberos libraries installed:
  30.  
  31.   http://www.cygnus.com/techie/kerbnet/
  32.  
  33. The current code is compatible with Kerberos V only.  It is described in
  34. the kerberos.txt file.
  35.  
  36. If you are in the USA or Canada, and you want to try the Kerberos support, or
  37. to adapt it to another platform, or adapt it to Kerberos IV, contact me, since
  38. certain modules are needed that can't be put on the public ftp site due to
  39. export restrictions.
  40.  
  41. USING EXTERNAL COMMUNICATION PROGRAMS
  42.  
  43. The other big item is a new PIPE command that lets C-Kermit use an external
  44. communications program to make the connection and do the communications i/o.
  45. So now you can have Kermit scripting and file transfer over all sorts of
  46. connections where you couldn't have them before, for example:
  47.  
  48.  . Use cu to make serial connections for which Kermit lacks permission
  49.  . Run Kermit through secure and/or SOCKSified Telnet clients
  50.  . Make rlogin connections without being root
  51.  
  52. Like Kerberos, this feature is available only in UNIX.  It works only with
  53. programs that use standard i/o.  It is described in section 2.7 of the
  54. ckermit2.upd file.
  55.  
  56. If you're interested in adapting this feature to non-UNIX platforms, or
  57. adapting it to use some mechanism other than pipes (e.g. ptys in UNIX
  58. so it might work with non-stdio programs), let me know.
  59.  
  60. GENERAL CHANGES SINCE BETA.01:
  61.  
  62.  . Added: Server can now handle GET request for filenames containing spaces.
  63.  . Added: Certain error messages that were missing from INPUT and OUTPUT.
  64.  . Added: REMOTE SET FILE INCOMPLETE { DISCARD, KEEP }.
  65.  . Added: New variable \v(osrelease) (from uname).
  66.  . Fixed: REMOTE command redirection with short-form replies.
  67.  . Fixed: Binary-mode mode file reception with SET PARITY SPACE.
  68.  . Fixed: SET HOST switches for non-serial, non-TCP connection methods.
  69.  . Fixed: Repeat-count compression could be skipped under certain conditions.
  70.  . Fixed: Broken REMOTE SET BLOCK-CHECK, RECEIVE TIMEOUT, and FILE NAMES.
  71.  . Fixed: Broken MKDIR & RMDIR commands when used in a macro or command file.
  72.  . Fixed: Redirectors for remote commands that return short-form replies.
  73.  . Fixed: Inability to edit the SET MODEM command.
  74.  . Fixed: Inability to edit a multiline SET KEY command.
  75.  . Increased: Maximum number of macro definitions for BIGBUFOK builds.
  76.  
  77. UNIX-SPECIFIC CHANGES
  78.  
  79.  . Added: New UNIX CONNECT module based on select() rather than fork().
  80.  . Added: Kerberos V authentication AND encryption for Linux.
  81.  . Added: PIPE command for using external communication programs.
  82.  . Added: uname info is obtained at runtime.
  83.  . Added: New variables \v(osname) and \v(osversion) from uname info.
  84.  . Added: uname info to top of debug log.
  85.  . Added: Designer banners for BSDI 2.x, 3.x.
  86.  . Fixed: \v(cpu) to show machine name from uname in preference to "unknown".
  87.  . Fixed: Hanging in Linux after using /dev/ttyS* device.
  88.  . Fixed: HP-UX lockfile handling to be compatible across all versions.
  89.  . Fixed: \v(xxx) variables for directory names to all end with "/".
  90.  . Fixed: \v(inidir) when initialization file not found.
  91.  . Fixed: Compilation on Sunsoft Interactive UNIX 4.1 (from Kenneth Cochran).
  92.  . Fixed: "send /recursive foo" ("foo" not wild) didn't work.
  93.  
  94. The new UNIX CONNECT module is not only for Kerberos, and does not need
  95. Kerberos to work.  It's better than the old one in every way -- it's
  96. snappier, it runs completely in the main Kermit process (rather than in two
  97. forks) so there are no pipes or signals, tons of gross and error-prone code
  98. have been removed, etc -- but it is not necessarily portable to all UNIX
  99. platforms because it uses select() and requires that select() work on all
  100. file descriptors (serial ports, pipes, etc) and not just sockets.  If you
  101. want to try it out:
  102.  
  103.   make clean
  104.   mv ckucon.c ckucon.save
  105.   mv ckucns.c ckucon.c
  106.   make xxx
  107.  
  108. and then try CONNECT sessions on (a) serial connections, (b) telnet or rlogin
  109. connections, and (c) pipe connections, and let me know the results.  If it
  110. works on all three, you can change the makefile entry to refer to the "xermit"
  111. target instead of the "wermit" target, as was done in the SunOS 4.1 entry
  112. (sunos41), which I have tested heavily here.
  113.  
  114.  Open UNIX issues:
  115.  
  116.  . Linux uucp lockfiles (port name aliases, chasing symbolic links, etc).
  117.  . More lockfiles needed for HP-UX?  (C-Kermit now behaves just like cu.)
  118.  . Still no C-Kermit 6.1 version for the BeBox (but we made some progress).
  119.  
  120. VMS-SPECIFIC CHANGES
  121.  
  122.  . Added: Support for transfer of odd-record-length files (from Lucas Hart).
  123.  . Added: Error message upon failure to spawn a process (from Lucas Hart).
  124.  . Added: SET TCP commands that were missing for no good reason.
  125.  . Fixed: Incorrect results from various "is-a-directory" tests (Lucas Hart).
  126.  . Fixed: getsockname() compilation warning (Lucas Hart).
  127.  . Fixed: Inability to receive a file with any name segment > 39 chars.
  128.  . Fixed: Spurious "Interrupted" message when sending certain kinds of files.
  129.  . Improved: Handling of RMDIR command failures.
  130.  . Disabled: High-precision timers for VMS prior to 5.0 (William Bader).
  131.  . Disabled: Reverse DNS lookup on UCX (doesn't work here).
  132.  
  133.  Open VMS issues:
  134.  
  135.  . LABELED mode lacks relative pathname option; directory-tree transfers
  136.    don't work between two VMS systems because they go into LABELED mode
  137.    automatically.
  138.  . Confusion about SET TRANSFER MODE { AUTOMATIC, MANUAL } vs FILE TYPE IMAGE
  139.    (should AUTOMATIC unset IMAGE?  Should IMAGE set MANUAL? ...)
  140.  . Need better error message for failure to receive a file in text mode that
  141.    has lines longer than 32K, or else a way to recover when this happens,
  142.    e.g. by breaking the long line.
  143.  . DECnet-aware CD command -- work in progress, should be available in Beta.03.
  144.  . Fractured fullscreen file transfer display during GET (can't reproduce).
  145.  . I don't have access to Alpha VMS 6.x any more, can't make binaries, sorry.
  146.  
  147. THE MACINTOSH VERSION
  148.  
  149. There is no Macintosh version.  My Macintosh died.  I bought a new one, but
  150. it's a Power Mac and won't run MPW C 3.2, and nobody can figure out how to
  151. build C-Kermit with "Code Warrior" -- all the header files are different,
  152. etc, even in the "MPW compatibility mode".  Conversion is evidently a massive
  153. job.  Volunteers?
  154.  
  155. WHERE TO FIND IT
  156.  
  157. C-Kermit 6.1.193 Beta.02 is in the kermit/test tree at the Kermit ftp site,
  158. along with drafts of all the update documentation, etc:
  159.  
  160.  ftp://kermit.columbia.edu/kermit/test/tar/
  161.    cku193src.tar.Z   Source code (UNIX and VMS), tar, UNIX compress
  162.    cku193src.tar.gz  Source code (UNIX and VMS), tar, gzipped
  163.    cku193txt.tar.Z   Other text files, tar, UNIX compress
  164.    cku193txt.tar.gz  Other text files, tar, gzipped
  165.  
  166.  ftp://kermit.columbia.edu/kermit/test/text/
  167.    Individual source and text files for UNIX, VMS, OS-9,
  168.    AOS/VS, Stratus VOS, etc etc.
  169.  
  170.  Among the interesting text files:
  171.    ckermit2.upd    -- Detailed documentation of new features since 6.0.
  172.    ckaaaa.hlp      -- Overview of files, file naming conventions, etc.
  173.    ckc193.upd      -- Program edit history since 6.0.
  174.    ckuins.doc      -- UNIX installation instructions.
  175.    ckvins.doc      -- VMS installation instructions.
  176.    ckvker.bwr      -- VMS C-Kermit "beware file" (hints and tips).
  177.    ckuker.bwr      -- UNIX C-Kermit beware file.
  178.    ckcplm.doc      -- Program logic manual, API definition, etc.
  179.    ckccfg.doc      -- Program configuration options.
  180.    alpha*.txt      -- Announcements of each Alpha test.
  181.    beta*.txt       -- Announcements of each Beta test.
  182.    kerberos.txt    -- Preliminary documentation of Kerberos features.
  183.  
  184. INDIVIDUAL BETA.02 BINARIES:
  185.  
  186. The binaries marked with (+) are Beta.02, transferred using itself to the
  187. Kermit ftp site.  The others are mostly Beta.01; some are earlier Alpha tests
  188. (built at sites I can't reach any more or that have since been upgraded to
  189. newer OS versions, or sent in by others).
  190.  
  191.  ftp://kermit.columbia.edu/kermit/test/bin/
  192.    ck9ker-net.bin                OS-9/68K 2.4
  193.    ck9ker-nonet.bin              OS-9/68K 2.4
  194.  + ckdker-aosvsii.pr             DG MV 2500 AOS/VS-II 2.20.73
  195.    ckpker.plan9_68020            Plan 9 from Bell Labs on 680x0
  196.    ckpker.plan9_i386             Plan 9 from Bell Labs on PC
  197.    ckpker.plan9_mips             Plan 9 from Bell Labs on MIPS
  198.    ckpker.plan9_sparc            Plan 9 from Bell Labs on Sparc
  199.  + ckuker.aix41                  IBM RS/6000 AIX 4.1
  200.  + ckuker.bsd44-hp9000_300       HP-9000/300 4.4BSD-Lite
  201.    ckuker.bsdi2-2.1              PC, BSDI 2.1
  202.    ckuker.bsdi2-3.0              PC, BSDI 3.0
  203.  + ckuker.bsdi2-3.1              PC, BSDI 3.1
  204.  + ckuker.du32                   DEC Alpha Digital UNIX 3.2
  205.  + ckuker.du40                   DEC Alpha Digital UNIX 4.0
  206.  + ckuker.hpux500wintcp          HP-9000/550 HP-UX 5.21   TWG-TCP/IP 1.2
  207.  + ckuker.hpux80-hp9000_385      HP-9000/385 HP-UX 8.00 (no curses, no opt.)
  208.  + ckuker.hpux80c-hp9000_385     HP-9000/385 HP-UX 8.00 (not optimized)
  209.  + ckuker.hpux90-hp9000_712      HP-9000/712 HP-UX 9.05 (not optimized)
  210.  + ckuker.hpux90o700-hp9000_712  HP-9000/712 HP-UX 9.05 (optimized for mod 700)
  211.  + ckuker.hpux100-10.20          HP-9000/715/33 HP-UX 10.20 (not optimized)
  212.  + ckuker.hpux100o-10.20         HP-9000/715/33 HP-UX 10.20 (optimized)
  213.  + ckuker.irix53                 SGI IRIX 5.3
  214.  + ckuker.irix62                 SGI IRIX 6.2
  215.    ckuker.irix63                 SGI IRIX 6.3
  216.    ckuker.is5r3jc-4.1            PC, Sunsoft Interactive UNIX 4.1
  217.  + ckuker.linux-1.2.13-i386      PC, Red Hat Linux 1.2.13
  218.  + ckuker.next-3.1-mc68040       NeXT 68040 NeXTSTEP 3.1
  219.    ckuker.next33-3.3-mc68040     NeXT 68040 NeXTSTEP 3.3
  220.  + ckuker.qnx16                  QNX 4.24 16-bit
  221.  + ckuker.qnx32                  QNX 4.24 32-bit
  222.  + ckuker.sco32v504              PC, SCO OpenServer 5.0.4 (no net)
  223.  + ckuker.sco32v504net           PC, SCO OpenServer 5.0.4 (TCP/IP)
  224.  + ckuker.sinix542-5.42-mips     SNI SINIX-N 5.4.2 MIPS (RM200)
  225.  + ckuker.solaris24-2.4-sparc    Sun Sparc, Solaris 2.4
  226.  + ckuker.solaris2xg-2.4-sparc   Sun Sparc, Solaris 2.4 (made with gcc)
  227.  + ckuker.solaris2x25-2.4-sparc  Sun Sparc, Solaris 2.4 with SunLink X.25
  228.  + ckuker.solaris25-2.5.1-sparc  Sun Sparc, Solaris 2.5.1
  229.  + ckuker.solaris25g-2.5.1-sparc Sun Sparc, Solaris 2.5.1 (made with gcc)
  230.    ckuker.solaris26-2.6-sparc    Sun Sparc, Solaris 2.6
  231.  + ckuker.sunos41c-4.1.3-sparc   Sun Sparc, SunOS 4.1.3_U1 (full)
  232.  + ckuker.sunos41m-4.1.3-sparc   Sun Sparc, SunOS 4.1.3_U1 (no command parser)
  233.  + ckuker.sunos41mi-4.1.3-sparc  Sun Sparc, SunOS 4.1.3_U1 (minimum parser)
  234.  + ckuker.sunos41gcc-4.1.3-sparc Sun Sparc, SunOS 4.1.3_U1 (full, with gcc)
  235.  + ckuker.ultrix42c-4.3-mips     DECstation 5000, Ultrix 4.3
  236.    ckuker.unixware2-2.1.1        PC, Unixware 2.1.1
  237.  + ckuker.unixware2-2.1.2        PC, Unixware 2.1.2
  238.    ckvaker-vms62-nonet.exe       Alpha CPU, VMS 6.1,   no TCP/IP
  239.    ckvaker-vms62-tgv40a.exe      Alpha CPU, VMS 6.1,   MultiNet 4.0A
  240.  + ckvaker-vms71-nonet.exe       Alpha CPU, VMS 7.1,   no TCP/IP
  241.  + ckvaker-vms71-tgv40b.exe      Alpha CPU, VMS 7.1,   MultiNet 4.0B
  242.    ckvvker-vms45-nonet.exe       VAX CPU,   VMS 4.5,   no TCP/IP
  243.  + ckvvker-vms55-nonet.exe       VAX CPU,   VMS 5.5-2, no TCP/IP
  244.  + ckvvker-vms55-ucx20.exe       VAX CPU,   VMS 5.5-2, UCX 2.0
  245.  + ckvvker-vms61-nonet.exe       VAX CPU,   VMS 6.1,   no TCP/IP
  246.  + ckvvker-vms61-tgv40a.exe      VAX CPU,   VMS 6.1,   MultiNet 4.0AX
  247.  + ckvvker-vms71-nonet.exe       VAX CPU,   VMS 7.1,   no TCP/IP
  248.  + ckvvker-vms71-tgv40b.exe      VAX CPU,   VMS 7.1,   MultiNet 4.0B
  249.  
  250. Thanks to all of you for your help with and comments on this version so far!
  251. Please continue to beat on it and send any bug reports straight to me.
  252.  
  253. If any of you can try building this version on platforms not listed above,
  254. please let me know the results.
  255.  
  256. Thanks again!
  257.  
  258. - Frank
  259.  
  260. APPENDIX: MAJOR NEW FEATURES SINCE VERSION 6.0
  261.  
  262.  * Program management:
  263.    . Editor and web browser interfaces
  264.    . Command modifiers (switches)
  265.  
  266.  * Making and Using Connections
  267.    . Dialing improvements (10-digit dialing, blind dialing, etc)
  268.    . New modem types and controls
  269.    . New Telnet protocol options
  270.    . External communication program interface
  271.  
  272.  * File Transfer and Management
  273.    . File-transfer command switches
  274.    . File-transfer pipes and filters
  275.    . Automatic per-file text/binary mode switching (by name)
  276.    . Transfer and preservation of file permissions
  277.    . Ability to transfer directory trees between unlike systems
  278.    . New file management commands and features
  279.    . Improved performance and responsiveness
  280.    . New display and log formats
  281.  
  282.  * New or improved client/server features
  283.  * Greek character sets
  284.  
  285.  * Script Programming
  286.    . Ability to pass more than ten arguments to a macro
  287.    . New or improved built-in variables and functions
  288.    . Built-in help for functions.
  289.    . Function and variable diagnostics
  290.    . New IF conditions
  291.    . Autodownload during INPUT command execution
  292.    . New OUTPUT command options
  293.    . Automatic arrays
  294.    . Array initializers
  295.    . Assignment operators
  296.  
  297. This is a very brief list; the complete story runs to about 100 printed pages,
  298. and can be found in the ckermit2.upd file, which is a supplement to "Using
  299. C-Kermit", 2nd Edition.
  300.  
  301. (End)
  302.