Skip to content
Snippets Groups Projects
  1. Mar 08, 2007
    • Dan Fandrich's avatar
      Added test infrastructure to support basic FTPS tests. This currently · 1bfa7dfe
      Dan Fandrich authored
      supports only ftps:// URLs with --ftp-ssl-control specified, which
      implicitly encrypts the control channel but not the data channels.  That
      allows stunnel to be used with an unmodified ftp server in exactly the
      same way that the test https server is set up.
      Added test case 400 as a basic FTPS test.
      1bfa7dfe
  2. Jan 29, 2007
  3. Jan 16, 2007
  4. Jan 15, 2007
  5. Jan 10, 2007
  6. Dec 11, 2006
    • Daniel Stenberg's avatar
      Alexey Simak found out that when doing FTP with the multi interface and · 88c8d72a
      Daniel Stenberg authored
      something went wrong like it got a bad response code back from the server,
      libcurl would leak memory. Added test case 538 to verify the fix.
      
      I also noted that the connection would get cached in that case, which
      doesn't make sense since it cannot be re-use when the authentication has
      failed. I fixed that issue too at the same time, and also that the path
      would be "remembered" in vain for cases where the connection was about to
      get closed.
      88c8d72a
  7. Nov 25, 2006
  8. Nov 01, 2006
    • Yang Tse's avatar
      test 518 is all about testing libcurl functionality · 905ca77c
      Yang Tse authored
      when more than FD_SETSIZE file descriptors are open.
      This means that if for any reason we are not able to
      open more than FD_SETSIZE file descriptors then test
      518 should not be run.
      
      test 537 is all about testing libcurl functionality
      when the system has nearly exhausted the number of
      free file descriptors. Test 537 will try to run with
      very few free file descriptors.
      905ca77c
  9. Oct 25, 2006
    • Daniel Stenberg's avatar
      Fixed CURLOPT_FAILONERROR to return CURLE_HTTP_RETURNED_ERROR even for the · cde5e35d
      Daniel Stenberg authored
      case when 401 or 407 are returned, *IF* no auth credentials have been given.
      The CURLOPT_FAILONERROR option is not possible to make fool-proof for 401
      and 407 cases when auth credentials is given, but we've now covered this
      somewhat more.
      
      You might get some amounts of headers transferred before this situation is
      detected, like for when a "100-continue" is received as a response to a
      POST/PUT and a 401 or 407 is received immediately afterwards.
      
      Added test 281 to verify this change.
      cde5e35d
  10. Oct 09, 2006
  11. Oct 08, 2006
  12. Oct 04, 2006
  13. Sep 30, 2006
  14. Sep 28, 2006
  15. Sep 23, 2006
  16. Sep 21, 2006
  17. Sep 20, 2006
  18. Sep 13, 2006
  19. Sep 08, 2006
  20. Sep 07, 2006
  21. Aug 31, 2006
  22. Jul 27, 2006
  23. Mar 28, 2006
  24. Mar 03, 2006
  25. Oct 30, 2005
  26. Oct 27, 2005
  27. Oct 20, 2005
  28. Oct 05, 2005
  29. Sep 19, 2005
  30. Sep 04, 2005
  31. 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
  32. Aug 12, 2005
  33. Aug 11, 2005
  34. Jul 12, 2005
  35. Jul 03, 2005
    • Daniel Stenberg's avatar
      Andrew Bushnell provided enough info for me to tell that we badly needed to · 20005a83
      Daniel Stenberg authored
      fix the CONNECT authentication code with multi-pass auth methods (such as
      NTLM) as it didn't previously properly ignore response-bodies - in fact it
      stopped reading after all response headers had been received. This could
      lead to libcurl sending the next request and reading the body from the first
      request as response to the second request. (I also renamed the function,
      which wasn't strictly necessary but...)
      
      The best fix would to once and for all make the CONNECT code use the
      ordinary request sending/receiving code, treating it as any ordinary request
      instead of the special-purpose function we have now. It should make it
      better for multi-interface too. And possibly lead to less code...
      
      Added test case 265 for this. It doesn't work as a _really_ good test case
      since the test proxy is too stupid, but the test case helps when running the
      debugger to verify.
      20005a83
  36. Jun 22, 2005
  37. May 31, 2005
  38. May 29, 2005
  39. May 24, 2005
Loading