1. 08 Jun, 2009 2 commits
  2. 07 Jun, 2009 2 commits
  3. 05 Jun, 2009 3 commits
  4. 04 Jun, 2009 1 commit
  5. 01 Jun, 2009 2 commits
  6. 27 May, 2009 4 commits
  7. 25 May, 2009 1 commit
  8. 19 May, 2009 1 commit
  9. 18 May, 2009 1 commit
  10. 17 May, 2009 1 commit
  11. 11 May, 2009 3 commits
  12. 08 May, 2009 2 commits
  13. 07 May, 2009 2 commits
  14. 04 May, 2009 3 commits
  15. 02 May, 2009 1 commit
  16. 01 May, 2009 1 commit
  17. 29 Apr, 2009 1 commit
    • Daniel Stenberg's avatar
      - Based on bug report #2723219 (http://curl.haxx.se/bug/view.cgi?id=2723219) · e2c6e005
      Daniel Stenberg authored
        I've now made TFTP "connections" not being kept for re-use within libcurl.
        TFTP is UDP-based so the benefit was really low (if even existing) to begin
        with so instead of tracking down to fix this problem we instead removed the
        re-use. I also enabled test case 1099 that I wrote a few days ago to verify
        that this change fixes the reported problem.
      e2c6e005
  18. 28 Apr, 2009 2 commits
  19. 26 Apr, 2009 1 commit
  20. 24 Apr, 2009 1 commit
  21. 23 Apr, 2009 1 commit
  22. 20 Apr, 2009 2 commits
  23. 17 Apr, 2009 1 commit
  24. 13 Apr, 2009 1 commit
    • Daniel Stenberg's avatar
      - bug report #2727981 (http://curl.haxx.se/bug/view.cgi?id=2727981) by Martin · 379bfa5a
      Daniel Stenberg authored
        Storsjo pointed out how setting CURLOPT_NOBODY to 0 could be downright
        confusing as it set the method to either GET or HEAD. The example he showed
        looked like:
      
         curl_easy_setopt(curl, CURLOPT_PUT, 1);
         curl_easy_setopt(curl, CURLOPT_NOBODY, 0);
      
        The new way doesn't alter the method until the request is about to start. If
        CURLOPT_NOBODY is then 1 the HTTP request will be HEAD. If CURLOPT_NOBODY is
        0 and the request happens to have been set to HEAD, it will then instead be
        set to GET. I believe this will be less surprising to users, and hopefully
        not hit any existing users badly.
      379bfa5a