home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / tmp9 / 00README.TXT next >
Text File  |  2011-07-19  |  6KB  |  119 lines

  1. KERMIT 95 SOURCE FILES
  2.  
  3. This directory contains the source files for Kermit 95 2.1.3 (K95 for
  4. short), released 1 January 2003, with updates by Jeffrey Altman through
  5. 2007, which are listed here:
  6.  
  7.   http://www.columbia.edu/kermit/k95-fixes-since-213.txt
  8.  
  9. The modules which are shared with C-Kermit for Unix, VMS, and other
  10. platforms (ckc*.*, cku*.*) correspond to those of C-Kermit 8.0.207 (which
  11. was never actually released), but with updates either from the main C-Kermit
  12. development branch, or K95-specific by Jeff.  No attempt has been made to
  13. reconcile the sources with those of C-Kermit 9.0; that would be a big job
  14. indeed (but one that is worth doing if a new Open Source Kermit 95 release
  15. is to be created).  Only the minimum changes to convert the K95 source code
  16. to an Open Source license have been made:
  17.  
  18.  . A new COPYING.TXT file
  19.  
  20.  . New copyright notices in ckcmai.c (the K95 main program module).
  21.  
  22.  . Elimination of restrictive license text from all files that are
  23.    Copyright Trustees of Columbia University in the City of New York
  24.    (these files have 19 July 2011 modification dates).  The COPYING.TXT
  25.    file applies to any file with a Columbia University copyright.
  26.  
  27.  . Exclusion of any module whose license prohibits open distribution
  28.    (there was only one, p_omalloc.c; see below).
  29.  
  30. No attempt has been made to compile or link these source files on Windows
  31. or OS/2 or anywhere else.
  32.  
  33. Any new version of K95 will have to deal with the following considerations:
  34.  
  35.  . All registration, serial number, and license enforcement code should
  36.    be removed.
  37.  
  38.  . There will be no Dialer.  The Dialer was built using a commercial
  39.    GUI-builder called Zinc; that company ceased to exist years ago.
  40.    Columbia had a source license to Zinc and made many modifications and
  41.    bug fixes necessary to build the Dialer.  But Columbia does not have
  42.    the right to distribute Zinc nor any patches to it.
  43.  
  44.  . The Console version for Windows is obsolete since later Windows
  45.    versions do not support it.
  46.  
  47.  . The XYZMODEM protocol code was contributed from Finland.
  48.    All of the modules but one have an open license:
  49.  
  50. /*****************************************************************************/
  51. /*             Copyright (c) 1994 by Jyrki Salmi <jytasa@jyu.fi>             */
  52. /*        You may modify, recompile and distribute this file freely.         */
  53. /*****************************************************************************/
  54.  
  55.    But one module, p_omalloc.c (a "more friendlier interface to OS/2's
  56.    DosAllocMem and DosFreeMem API calls"), has this, and is therefore
  57.    excluded from the distribution (since the copyright holders can no 
  58.    longer be located):
  59.  
  60. /*****************************************************************************/
  61. /*                                                                           */
  62. /*              Copyright (c) 1995 by Oy Online Solutions Ltd.               */
  63. /*                                                                           */
  64. /*   Distribution of this source code is strictly forbbidden. Use of this    */
  65. /*   source code is granted to the University of Columbia C-Kermit project   */
  66. /*   to be distributed in binary format only. Please familiarize yourself    */
  67. /*   with the accompanying LICENSE.P file.                                   */
  68. /*                                                                           */
  69. /*****************************************************************************/
  70.  
  71.    The p_omalloc module has only two entry points, p_omalloc() and p_ofree(),
  72.    which are replacements for the regular malloc() and free(), but with
  73.    more arguments, whose usage can be inferred from the invocations that 
  74.    appear in other p_*.c modules.
  75.  
  76.  . The SSH code contains known security weaknesses that need to be fixed.  A
  77.    new SSH module should be developed from scratch.  The openssh sources it
  78.    was derived from in 2002 have diverged too much to be fixed.
  79.  
  80.  . Other security code (Kerberos, SSL/TLS, and SRP) needs to brought up to
  81.    date with current releases of those libraries.
  82.  
  83.  . To take advantage of all the new developments in C-Kermit since 8.0.207,
  84.    and to return to a common code base for C-Kermit and K95, K95 should be
  85.    integrated with the C-Kermit source files (ck[cu]*.[ch] and ckcpro.w).
  86.  
  87. K95 was last built with Microsoft SDK November 2001 / Visual Studio 6.0.
  88.  
  89. The makefile is ckoker.mak.  Before running it, it's necessary to set the
  90. "include" and "lib" environment variables for the many external libraries
  91. K95 is linked with (such as OpenSSL, SRP, and Kerberos) [each of these is
  92. one long line broken for readability]:
  93.  
  94.     set include=%include%;c:\src\kermit\k95;
  95.   c:\src\openssl\0.9.7\inc32;
  96.   c:\src\srp\include;
  97.   c:\src\pwsdk\inc32;
  98.   c:\src\kerberos\kfw-2.2-beta-2\athena\wshelper\include;
  99.   c:\src\superlat\include;
  100.   c:\src\kerberos\kfw-2.2-beta-2\athena\auth\krb5\src\include;
  101.   c:\src\kermit\k95\kui;
  102.   c:\src\zinc\include;
  103.  
  104.     set lib=%lib%;c:\src\kerberos\kfw-2.2-beta-2\target\lib\i386\rel;
  105.   c:\src\zinc\lib\mvcpp500
  106.  
  107. Note that Zinc is not included in this distribution, nor Meridian
  108. Technologies SuperLAT, support for which was included in K95 under license.
  109. Any -DSUPERLAT definition should be removed the makefile.  I'm not sure how
  110. avoid Zinc.  The makefile can then be invoked with something like this:
  111.  
  112.   SET PLATFORM=NT
  113.   SET K95BUILD=K95
  114.   nmake /nologo /e /f ckoker.mak msvc |& tee comp.out.nt | list /s
  115.  
  116. The principal authors of Kermit 95, Jeff Altman and Frank da Cruz, no longer
  117. have jobs at Columbia University and may or may not be available for advice
  118. due to the exigencies of real life.
  119.