1. 01 Dec, 2010 2 commits
  2. 30 Nov, 2010 4 commits
  3. 28 Nov, 2010 2 commits
  4. 26 Nov, 2010 6 commits
  5. 25 Nov, 2010 4 commits
  6. 24 Nov, 2010 1 commit
  7. 23 Nov, 2010 1 commit
    • Yang Tse's avatar
      Curl_getaddrinfo_ex: sanitize function results. · 6fe18add
      Yang Tse authored
      Ensure that spurious results from system's getaddrinfo() ares not propagated
      by Curl_getaddrinfo_ex() into the library.
      
      Also ensure that the ai_addrlen member of Curl_getaddrinfo_ex()'s output linked
      list of Curl_addrinfo structures has appropriate family-specific address size.
      6fe18add
  8. 22 Nov, 2010 1 commit
  9. 20 Nov, 2010 2 commits
  10. 19 Nov, 2010 4 commits
  11. 18 Nov, 2010 2 commits
  12. 14 Nov, 2010 2 commits
  13. 13 Nov, 2010 3 commits
  14. 12 Nov, 2010 5 commits
  15. 11 Nov, 2010 1 commit
    • Daniel Stenberg's avatar
      HTTP Auth: Add CURLAUTH_ONLY · 86367422
      Daniel Stenberg authored
      This is a meta symbol. OR this value together with a single specific
      auth value to force libcurl to probe for un-restricted auth and if not,
      only that single auth algorithm is acceptable.
      
      For example you can use CURLAUTH_DIGEST|CURLAUTH_ONLY to make libcurl
      first probe for what method to use, but yet only consider Digest to be
      acceptable.
      
      Using _only_ CURLAUTH_DIGEST without the CURLAUTH_ONLY field, will make
      libcurl explicitly use Digest right away and not do any probing.
      86367422