1. 24 Apr, 2009 1 commit
  2. 23 Apr, 2009 5 commits
  3. 22 Apr, 2009 2 commits
  4. 21 Apr, 2009 4 commits
  5. 20 Apr, 2009 2 commits
  6. 19 Apr, 2009 1 commit
  7. 18 Apr, 2009 6 commits
  8. 17 Apr, 2009 6 commits
  9. 16 Apr, 2009 1 commit
  10. 15 Apr, 2009 3 commits
  11. 14 Apr, 2009 8 commits
  12. 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