Skip to content
Snippets Groups Projects
  1. Sep 20, 2015
  2. Aug 24, 2015
  3. Jun 16, 2015
  4. Apr 15, 2015
  5. Mar 29, 2015
  6. Dec 26, 2014
  7. Dec 15, 2014
  8. Aug 22, 2014
    • Frank Meier's avatar
      NTLM: ignore CURLOPT_FORBID_REUSE during NTLM HTTP auth · 63a0bd42
      Frank Meier authored
      Problem: if CURLOPT_FORBID_REUSE is set, requests using NTLM failed
      since NTLM requires multiple requests that re-use the same connection
      for the authentication to work
      
      Solution: Ignore the forbid reuse flag in case the NTLM authentication
      handshake is in progress, according to the NTLM state flag.
      
      Fixed known bug #77.
      63a0bd42
  9. Aug 08, 2014
  10. Jun 04, 2014
  11. Jun 01, 2014
  12. Mar 31, 2014
  13. Mar 14, 2014
  14. Jan 04, 2014
  15. Dec 15, 2013
  16. Nov 27, 2013
  17. Nov 05, 2013
  18. Oct 02, 2013
  19. Aug 25, 2013
  20. Aug 08, 2013
  21. Jun 22, 2013
  22. Jun 10, 2013
  23. May 21, 2013
  24. Sep 13, 2012
  25. Aug 31, 2012
    • Daniel Stenberg's avatar
      test2032: bail out after last transfer · 7735141e
      Daniel Stenberg authored
      The test would hang and get aborted with a "ABORTING TEST, since it
      seems that it would have run forever." until I prevented that from
      happening.
      
      I also fixed the data file which got broken CRLF line endings when I
      sucked down the path from Joe's repo == my fault.
      
      Removed #37 from KNOWN_BUGS as this fix and test case verifies exactly
      this.
      7735141e
  26. Jul 20, 2012
  27. Jul 08, 2012
  28. Jul 07, 2012
  29. Jan 18, 2012
  30. Jan 04, 2012
  31. Oct 20, 2011
  32. Aug 15, 2010
    • Daniel Stenberg's avatar
      multi: support timeouts · 232ad654
      Daniel Stenberg authored
      Curl_expire() is now expanded to hold a list of timeouts for each easy
      handle. Only the closest in time will be the one used as the primary
      timeout for the handle and will be used for the splay tree (which sorts
      and lists all handles within the multi handle).
      
      When the main timeout has triggered/expired, the next timeout in time
      that is kept in the list will be moved to the main timeout position and
      used as the key to splay with. This way, all timeouts that are set with
      Curl_expire() internally will end up as a proper timeout. Previously any
      Curl_expire() that set a _later_ timeout than what was already set was
      just silently ignored and thus missed.
      
      Setting Curl_expire() with timeout 0 (zero) will cancel all previously
      added timeouts.
      
      Corrects known bug #62.
      232ad654
  33. Aug 11, 2010
  34. Jul 30, 2010
    • Daniel Stenberg's avatar
      KNOWN_BUG: The SOCKET type in Win64 is 64 bits · 53e47ca9
      Daniel Stenberg authored
      The SOCKET type in Win64 is 64 bits large (and thus so is curl_socket_t
      on that platform), and long is only 32 bits. It makes it impossible for
      curl_easy_getinfo() to return a socket properly with the
      CURLINFO_LASTSOCKET option as for all other operating systems.
      53e47ca9
  35. Feb 14, 2010
Loading