Skip to content
Snippets Groups Projects
  1. Jan 19, 2006
    • Daniel Stenberg's avatar
      Duane Cathey was one of our friends who reported that curl -P [IP] · fcfd6d95
      Daniel Stenberg authored
      (CURLOPT_FTPPORT) didn't work for ipv6-enabed curls if the IP wasn't a
      "native" IP while it works fine for ipv6-disabled builds!
      
      In the process of fixing this, I removed the support for LPRT since I can't
      think of many reasons to keep doing it and asking on the mailing list didn't
      reveal anyone else that could either. The code that sends EPRT and PORT is
      now also a lot simpler than before (IMHO).
      fcfd6d95
  2. Jan 16, 2006
  3. Jan 10, 2006
    • Daniel Stenberg's avatar
      When using a bad path over FTP, as in when libcurl couldn't CWD into all · 44313386
      Daniel Stenberg authored
      given subdirs, libcurl would still "remember" the full path as if it is the
      current directory libcurl is in so that the next curl_easy_perform() would
      get really confused if it tried the same path again - as it would not issue
      any CWD commands at all, assuming it is already in the "proper" dir.
      
      Starting now, a failed CWD command sets a flag that prevents the path to be
      "remembered" after returning.
      44313386
  4. Nov 28, 2005
  5. Oct 27, 2005
  6. Sep 16, 2005
  7. Sep 04, 2005
  8. Sep 02, 2005
  9. Aug 29, 2005
  10. Aug 24, 2005
    • Daniel Stenberg's avatar
      Toby Peterson added CURLOPT_IGNORE_CONTENT_LENGTH to the library, accessible · a4773fcb
      Daniel Stenberg authored
      from the command line tool with --ignore-content-length. This will make it
      easier to download files from Apache 1.x (and similar) servers that are
      still having problems serving files larger than 2 or 4 GB. When this option
      is enabled, curl will simply have to wait for the server to close the
      connection to signal end of transfer. I wrote test case 269 that runs a
      simple test that this works.
      a4773fcb
  11. Jul 12, 2005
  12. Apr 25, 2005
  13. Apr 08, 2005
  14. Apr 07, 2005
    • Daniel Stenberg's avatar
      GnuTLS support added. There's now a "generic" SSL layer that we use all over · 6e619393
      Daniel Stenberg authored
      internally, with code provided by sslgen.c. All SSL-layer-specific code is
      then written in ssluse.c (for OpenSSL) and gtls.c (for GnuTLS).
      
      As far as possible, internals should not need to know what SSL layer that is
      in use. Building with GnuTLS currently makes two test cases fail.
      
      TODO.gnutls contains a few known outstanding issues for the GnuTLS support.
      
      GnuTLS support is enabled with configure --with-gnutls
      6e619393
  15. Mar 29, 2005
  16. Mar 14, 2005
  17. Mar 12, 2005
  18. Mar 10, 2005
  19. Feb 09, 2005
  20. Jan 29, 2005
  21. Jan 28, 2005
    • Daniel Stenberg's avatar
      KNOWN_BUGS #17 fixed. A DNS cache entry may not remain locked between two · 4551e7ce
      Daniel Stenberg authored
      curl_easy_perform() invokes. It was previously unlocked at disconnect, which
      could mean that it remained locked between multiple transfers. The DNS cache
      may not live as long as the connection cache does, as they are separate.
      
      To deal with the lack of DNS (host address) data availability in re-used
      connections, libcurl now keeps a copy of the IP adress as a string, to be able
      to show it even on subsequent requests on the same connection.
      4551e7ce
  22. Jan 25, 2005
  23. Jan 21, 2005
  24. Jan 11, 2005
  25. Jan 10, 2005
  26. Dec 19, 2004
  27. Dec 16, 2004
  28. Dec 15, 2004
  29. Dec 14, 2004
  30. Dec 13, 2004
  31. Dec 06, 2004
  32. Nov 26, 2004
  33. Nov 25, 2004
    • Daniel Stenberg's avatar
      FTP improvements: · bf51f05a
      Daniel Stenberg authored
      If EPSV, EPRT or LPRT is tried and doesn't work, it will not be retried on
      the same server again even if a following request is made using a persistent
      connection.
      
      If a second request is made to a server, requesting a file from the same
      directory as the previous request operated on, libcurl will no longer make
      that long series of CWD commands just to end up on the same spot. Note that
      this is only for *exactly* the same dir. There is still room for improvements
      to optimize the CWD-sending when the dirs are only slightly different.
      
      Added test 210, 211 and 212 to verify these changes. Had to improve the
      test script too and added a new primitive to the test file format.
      bf51f05a
  34. Nov 24, 2004
  35. Oct 19, 2004
  36. Oct 06, 2004
  37. Sep 30, 2004
Loading