1. 15 Nov, 2007 1 commit
  2. 14 Nov, 2007 1 commit
  3. 12 Nov, 2007 1 commit
    • Daniel Stenberg's avatar
      Bug report #1830637 (http://curl.haxx.se/bug/view.cgi?id=1830637), which was · c5b16d44
      Daniel Stenberg authored
      forwarded from the Gentoo bug tracker by Daniel Black and was originally
      submitted by Robin Johnson, pointed out that libcurl would do bad memory
      references when it failed and bailed out before the handler thing was
      setup. My fix is not done like the provided patch does it, but instead I
      make sure that there's never any chance for a NULL pointer in that struct
      member.
      c5b16d44
  4. 11 Nov, 2007 1 commit
  5. 08 Nov, 2007 1 commit
  6. 06 Nov, 2007 1 commit
  7. 05 Nov, 2007 1 commit
  8. 01 Nov, 2007 2 commits
  9. 31 Oct, 2007 2 commits
  10. 29 Oct, 2007 3 commits
  11. 28 Oct, 2007 1 commit
  12. 25 Oct, 2007 5 commits
  13. 24 Oct, 2007 1 commit
  14. 23 Oct, 2007 1 commit
  15. 22 Oct, 2007 3 commits
  16. 05 Oct, 2007 1 commit
  17. 04 Oct, 2007 1 commit
    • Daniel Stenberg's avatar
      Kim Rinnewitz reported that --local-port didn't work with TFTP transfers. · 67d94514
      Daniel Stenberg authored
      This happened because the tftp code always uncondionally did a bind()
      without caring if one already had been done and then it failed. I wrote a
      test case (1009) to verify this, but it is a bit error-prone since it will
      have to pick a fixed local port number and since the tests are run on so
      many different hosts in different situations I add it in disabled state.
      67d94514
  18. 03 Oct, 2007 4 commits
  19. 02 Oct, 2007 1 commit
  20. 30 Sep, 2007 1 commit
  21. 29 Sep, 2007 1 commit
  22. 28 Sep, 2007 1 commit
  23. 26 Sep, 2007 3 commits
    • Daniel Stenberg's avatar
      we added a curl_easy_setopt() option too · 9b550564
      Daniel Stenberg authored
      9b550564
    • 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
    • Daniel Stenberg's avatar
      Max Katsev reported that when doing a libcurl FTP request with · a6315359
      Daniel Stenberg authored
      CURLOPT_NOBODY enabled but not CURLOPT_HEADER, libcurl wouldn't do TYPE
      before it does SIZE which makes it less useful. I walked over the code and
      made it do this properly, and added test case 542 to verify it.
      a6315359
  24. 24 Sep, 2007 1 commit
  25. 21 Sep, 2007 1 commit