1. 06 Jan, 2011 1 commit
  2. 05 Jan, 2011 3 commits
  3. 04 Jan, 2011 14 commits
  4. 03 Jan, 2011 9 commits
  5. 02 Jan, 2011 1 commit
  6. 01 Jan, 2011 2 commits
  7. 30 Dec, 2010 2 commits
  8. 28 Dec, 2010 2 commits
  9. 27 Dec, 2010 1 commit
    • Daniel Stenberg's avatar
      c-ares: fix cancelled resolves · b6a3e2be
      Daniel Stenberg authored
      When built IPv6-enabled, we could do Curl_done() with one of the two
      resolves having returned already, so when ares_cancel() is called the
      resolve callback ends up doing funny things (sometimes resulting in a
      segfault) since it would try to actually store the previous resolve even
      though we're shutting down the resolve.
      
      This bug was introduced in commit 8ab137b2 so it hasn't been
      included in any public release.
      
      Bug: http://curl.haxx.se/bug/view.cgi?id=3145445
      Reported by: Pedro Larroy
      b6a3e2be
  10. 25 Dec, 2010 3 commits
  11. 23 Dec, 2010 2 commits
    • Daniel Stenberg's avatar
      cookies: tricked dotcounter fixed · 49465fff
      Daniel Stenberg authored
      Providing multiple dots in a series in the domain field (domain=..com) could
      trick the cookie engine to wrongly accept the cookie believing it to be
      fine. Since the tailmatching would then match all .com sites, the cookie would
      then be sent to all of them.
      
      The code now requires at least one letter between each dot for them to be
      counted. Edited test case 61 to verify this.
      49465fff
    • Daniel Stenberg's avatar
      multi: connect fail => use next IP address · 5825aa14
      Daniel Stenberg authored
      When using the multi interface and connecting to a host name that
      resolves to multiple IP addresses, there was no logic that made it
      continue to the next IP if connecting to the first address times
      out. This is now corrected.
      5825aa14