1. 03 Oct, 2007 1 commit
  2. 26 Sep, 2007 1 commit
    • Daniel Stenberg's avatar
      Philip Langdale provided the new CURLOPT_POST301 option for · fd4cf78f
      Daniel Stenberg authored
      curl_easy_setopt() that alters how libcurl functions when following
      redirects. It makes libcurl obey the RFC2616 when a 301 response is received
      after a non-GET request is made. Default libcurl behaviour is to change
      method to GET in the subsequent request (like it does for response code 302
      - because that's what many/most browsers do), but with this CURLOPT_POST301
      option enabled it will do what the spec says and do the next request using
      the same method again. I.e keep POST after 301.
      
      The curl tool got this option as --post301
      
      Test case 1011 and 1012 were added to verify.
      fd4cf78f
  3. 13 Sep, 2007 1 commit
  4. 31 Aug, 2007 1 commit
  5. 30 Aug, 2007 1 commit
    • Dan Fandrich's avatar
      Renamed several libcurl error codes and options to make them more general · 9f44a955
      Dan Fandrich authored
      and allow reuse by multiple protocols. Several unused error codes were
      removed.  In all cases, macros were added to preserve source (and binary)
      compatibility with the old names.  These macros are subject to removal at
      a future date, but probably not before 2009.  An application can be
      tested to see if it is using any obsolete code by compiling it with the
      CURL_NO_OLDIES macro defined.
      
      Documented some newer error codes in libcurl-error(3)
      9f44a955
  6. 23 Aug, 2007 1 commit
  7. 07 Aug, 2007 1 commit
  8. 01 Aug, 2007 1 commit
  9. 10 Jul, 2007 1 commit
  10. 01 Jul, 2007 1 commit
  11. 30 Jun, 2007 1 commit
  12. 27 Jun, 2007 1 commit
  13. 25 Jun, 2007 2 commits
  14. 30 May, 2007 1 commit
  15. 08 May, 2007 1 commit
  16. 20 Apr, 2007 1 commit
  17. 16 Apr, 2007 1 commit
  18. 11 Apr, 2007 1 commit
  19. 20 Feb, 2007 1 commit
  20. 12 Feb, 2007 2 commits
  21. 05 Feb, 2007 1 commit
    • Daniel Stenberg's avatar
      - Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MS · 91386937
      Daniel Stenberg authored
        and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the
        timeouts with millisecond resolution instead. The only restriction to that
        is the alarm() (sometimes) used to abort name resolves as that uses full
        seconds. I fixed the FTP response timeout part of the patch.
      
        Internally we now count and keep the timeouts in milliseconds but it also
        means we multiply set timeouts with 1000. The effect of this is that no
        timeout can be set to more than 2^31 milliseconds (on 32 bit systems), which
        equals 24.86 days.  We probably couldn't before either since the code did
        *1000 on the timeout values on several places already.
      91386937
  22. 30 Jan, 2007 1 commit
  23. 08 Jan, 2007 1 commit
  24. 05 Jan, 2007 1 commit
  25. 02 Nov, 2006 1 commit
  26. 30 Oct, 2006 2 commits
  27. 21 Oct, 2006 1 commit
  28. 12 Oct, 2006 1 commit
    • Daniel Stenberg's avatar
      Jeff Pohlmeyer has been working with the hiperfifo.c example source code, · b61c0638
      Daniel Stenberg authored
      and while doing so it became apparent that the current timeout system for
      the socket API really was a bit awkward since it become quite some work to
      be sure we have the correct timeout set.
      
      Jeff then provided the new CURLMOPT_TIMERFUNCTION that is yet another
      callback the app can set to get to know when the general timeout time
      changes and thus for an application like hiperfifo.c it makes everything a
      lot easier and nicer. There's a CURLMOPT_TIMERDATA option too of course in
      good old libcurl tradition.
      b61c0638
  29. 30 Sep, 2006 1 commit
  30. 11 Sep, 2006 1 commit
  31. 07 Sep, 2006 1 commit
  32. 04 Sep, 2006 1 commit
  33. 03 Sep, 2006 1 commit
  34. 29 Aug, 2006 2 commits
  35. 11 Aug, 2006 1 commit
  36. 04 Aug, 2006 1 commit