Skip to content
Snippets Groups Projects
  1. Jul 03, 2006
  2. Apr 11, 2006
  3. Apr 10, 2006
  4. Feb 23, 2006
    • Daniel Stenberg's avatar
      Lots of work and analysis by "xbx___" in bug #1431750 · 6fdbb011
      Daniel Stenberg authored
      (http://curl.haxx.se/bug/view.cgi?id=1431750) helped me identify and fix two
      different but related bugs:
      
      1) Removing an easy handle from a multi handle before the transfer is done
         could leave a connection in the connection cache for that handle that is
         in a state that isn't suitable for re-use. A subsequent re-use could then
         read from a NULL pointer and segfault.
      
      2) When an easy handle was removed from the multi handle, there could be an
         outstanding c-ares DNS name resolve request. When the response arrived,
         it caused havoc since the connection struct it "belonged" to could've
         been freed already.
      
      Now Curl_done() is called when an easy handle is removed from a multi handle
      pre-maturely (that is, before the transfer was complteted). Curl_done() also
      makes sure to cancel all (if any) outstanding c-ares requests.
      6fdbb011
  5. Dec 11, 2005
  6. Apr 04, 2005
  7. Feb 09, 2005
  8. Feb 08, 2005
  9. Jan 25, 2005
  10. Jun 24, 2004
  11. Jun 10, 2004
  12. Apr 26, 2004
  13. Mar 30, 2004
  14. Jan 07, 2004
  15. Dec 15, 2003
  16. Oct 04, 2003
  17. Aug 05, 2003
  18. Jun 26, 2003
  19. May 13, 2003
  20. Feb 04, 2003
  21. Jan 16, 2003
  22. Nov 26, 2002
  23. Nov 11, 2002
  24. Nov 05, 2002
  25. Sep 03, 2002
  26. Apr 25, 2002
    • Daniel Stenberg's avatar
      In order to not get problems with DNS cache pruning, we no longer store · 8927ddec
      Daniel Stenberg authored
      any name resolved data in any curl handle struct. That way, we won't mind
      if the cache entries are pruned for the next time we need them. We'll just
      resolve them again instead.
      
      This changes the Curl_resolv() proto. It modifies the SessionHandle struct
      but perhaps most importantly, it'll make the internals somewhat dependent
      on the DNS cache not being disabled as that will cripple operations somewhat.
      Especially for persistant connections.
      8927ddec
  27. Mar 19, 2002
  28. Jan 07, 2002
  29. Jan 03, 2002
  30. Oct 04, 2001
  31. Oct 02, 2001
  32. Sep 28, 2001
Loading