home *** CD-ROM | disk | FTP | other *** search
/ ftp.ncftp.com / ftp.ncftp.com.zip / ftp.ncftp.com / libncftp / older_versions / libncftp-3.1.5-src.tar.gz / libncftp-3.1.5-src.tar / libncftp-3.1.5 / doc / CHANGELOG.txt next >
Text File  |  2002-10-13  |  5KB  |  149 lines

  1. LibNcFTP Change Log:
  2. ===================
  3.  
  4. 3.1.5, 2002-10-13
  5.  
  6.  + Compatibility fixes for AIX, Linux, Mac OS X, IRIX 6.2 and SunOS 4.
  7.  
  8.  + Be less pedantic about incorrectly formatted multi-line responses.
  9.  
  10.  + For ASCII transfers, try harder to handle non-native end-of-line formats.
  11.  
  12.  + New timeval fields lastCmdStart and lastCmdFinish which are updated by
  13.    the library automatically.  The purpose of these is to let you check
  14.    them to see if you want to send a NOOP to keep the connection alive.
  15.  
  16.  
  17. 3.1.4, 2002-07-02
  18.  
  19.  + Changed declaration of FTPConfirmResumeDownloadProc and
  20.    FTPConfirmResumeUploadProc so first parameter is a FTPCIPtr.
  21.    Unfortunately this will require existing code be slightly revised.
  22.  
  23.  + Another internal function, Error(), has been renamed to FTPLogError()
  24.    to avoid another namespace collision.
  25.  
  26.  + New configure flag, --disable-ccdv.
  27.  
  28.  + Makefile has "distclean" target.
  29.  
  30.  + Compatibility fixes for C++ and Linux.
  31.  
  32.  + Fixed a socket leak and a crash on Win32.
  33.  
  34.  + A few minor fixes for firewall logins.
  35.  
  36.  + By default, proxy connections for PORT are no longer allowed.  This is
  37.    mostly an extra security precaution, to eliminate cases where someone
  38.    could hijack a data connection by connecting to us after we issue PORT
  39.    but before the server could connect to us.
  40.  
  41.  + Bug fixed in configure script for enabling Socks.
  42.  
  43.  + A few new firewalls (permutations of type 1).  (Thanks, Felix Buenemann)
  44.  
  45.  + Try harder to avoid unnecessary SIZE/MDTM/MLST/REST commands.
  46.  
  47.  + A new "hasHELP_SITE" structure field is available in case you need
  48.    to avoid doing a "HELP SITE".  Some server software (i.e. IBM Mainframes)
  49.    crashes when you do this.
  50.  
  51.  
  52. 3.1.3, 2002-03-27
  53.  
  54.  + Enhancements to Monkey.
  55.  
  56.  + Bug fixed on Solaris where a socket could be left in non-blocking mode.
  57.  
  58.  + Ls parsing is now more forgiving of weird /bin/ls implementations (AIX).
  59.  
  60.  + Be more lenient on broken server implementations which include extra
  61.    blank lines in the control connection conversation.
  62.  
  63.  + Compatibility fixes for IRIX 5.x and AIX 4.2.x.
  64.  
  65.  + Compatibility fixes for Cygwin
  66.    (Thanks, Charles Wilson <cwilson AT ece.gatech.edu>).
  67.  
  68.  + Some extra debugging information is now logged to the trace logs.
  69.  
  70.  + Fix namespace collisions with Mac OS headers.  Use "FTPLine" and
  71.    "FTPFileInfo", in place of "Line" and "FileInfo".
  72.  
  73.  
  74. 3.1.2, 2002-01-30:
  75.  
  76.  + A fix for the local hostname detection code which could result with only
  77.    the first character of the domain appended, rather than the entire domain
  78.    (Thanks, Bernhard Sadlowski <sadlowsk AT mathematik.uni-bielefeld.de>).
  79.  
  80.  + Another bug fixed in local hostname detection where looking up the host
  81.    by IP address was not done correctly.
  82.  
  83.  + Fixed a few portability problems on HP-UX 10.20 which were introduced
  84.    in 3.1.0.
  85.  
  86.  + Fixed bug with readdir_r usage on Solaris, which could cause crashes
  87.    when doing recursive uploads, among other things.
  88.  
  89.  + On Linux, use gethostbyname2_r() to specify that we only want IPv4
  90.    addresses returned.
  91.  
  92.  + Reversing behavior from 3.1.0 where we did a shutdown() on the half
  93.    of the socket that wasn't used.  We suspect this was causing some
  94.    firewalls and routers to panic and assume the whole connection was
  95.    to be closed.
  96.  
  97.  + Bug fixed where an unresolvable hostname caused a pointless connection
  98.    attempt which would fail.
  99.  
  100.  + Bug fixed in FTPChdir3 with one-at-a-time mode.
  101.  
  102.  + Obscure bug fixed in recursive local globbing.
  103.  
  104.  + Fixes for ncftpsyncput sample program.
  105.  
  106.  
  107. 3.1.1, 2001-12-23:
  108.  
  109.  + Fixed bugs with our use of gethostbyname_r/addr_r on Linux.
  110.  
  111.  + Fixed bugs with our implementation of stat64() on Windows, which caused
  112.    problems when querying information about local directories.
  113.  
  114.  
  115. 3.1.0, 2001-12-17:
  116.  
  117. + Win32 support is now officially incorporated into the library.
  118.  
  119. + The library no longer uses signals or expects you to have signal
  120.   handlers for SIGALRM or SIGPIPE.
  121.  
  122. + Internal changes should result in the library being more friendly
  123.   to multi-threaded environments, although we still do not have our
  124.   test suite ready to certify that the library is 100% threadsafe.
  125.  
  126. + Library defaults to "PASV-but-fallback-to-PORT" mode now (i.e.
  127.   cip->dataPortMode == kFallBackToSendPortMode).  The previous
  128.   default had been PORT mode (cip->dataPortMode == kSendPortMode).
  129.  
  130. + Library now uses timeouts by default since a signal handler is not
  131.   required (kDefaultXferTimeout==600, kDefaultConnTimeout==30, and
  132.   kDefaultCtrlTimeout==135).
  133.  
  134. + Bug fixed where puts could delay a few seconds unnecessarily after
  135.   the file had been sent.
  136.  
  137. + Library optimizations should result in less unneeded code included with
  138.   programs that use the libraries.  Your programs should be smaller as a
  139.   result.
  140.  
  141. + Recursive uploading has been substantially reworked for both functionality
  142.   and reliability.  Arbitrary pathname sizes have also been removed, so
  143.   directory trees should only be limited by available memory and stack space.
  144.  
  145. + Huge number of lint fixes.  LibNcFTP now compiles cleanly on several
  146.   platforms even with extra warning options enabled.
  147.  
  148. + Large number of internal changes to the configure scripts.
  149.