Skip to content
  1. May 27, 2009
  2. May 25, 2009
  3. May 19, 2009
  4. May 18, 2009
  5. May 17, 2009
  6. May 11, 2009
  7. May 08, 2009
  8. May 07, 2009
  9. May 04, 2009
  10. May 02, 2009
  11. May 01, 2009
  12. Apr 29, 2009
    • 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
  13. Apr 28, 2009
  14. Apr 26, 2009
  15. Apr 24, 2009
  16. Apr 23, 2009
  17. Apr 20, 2009
  18. Apr 17, 2009
  19. Apr 13, 2009
  20. Apr 10, 2009
  21. Apr 08, 2009
  22. Apr 02, 2009
    • Yang Tse's avatar
      Fix curl_off_t definition for builds done using Sun compilers and a · 168fb3a8
      Yang Tse authored
      non-configured libcurl. In this case curl_off_t data type was gated
      to the off_t data type which depends on the _FILE_OFFSET_BITS. This
      configuration is exactly the unwanted configuration for our curl_off_t
      data type which must not depend on such setting. This breaks ABI for
      libcurl libraries built with Sun compilers which were built without
      having run the configure script with _FILE_OFFSET_BITS different than
      64 and using the ILP32 data model.
      168fb3a8
    • Dan Fandrich's avatar
      Added the curl_easy_recv return code fix · 626f9bd8
      Dan Fandrich authored
      626f9bd8
  23. Mar 18, 2009
  24. Mar 13, 2009
  25. Mar 12, 2009
  26. Mar 11, 2009
  27. Mar 09, 2009
    • Daniel Stenberg's avatar
      - Frank Hempel found out a bug and provided the fix: · bdec6f2b
      Daniel Stenberg authored
        curl_easy_duphandle did not necessarily duplicate the CURLOPT_COOKIEFILE
        option. It only enabled the cookie engine in the destination handle if
        data->cookies is not NULL (where data is the source handle). In case of a
        newly initialized handle which just had the cookie support enabled by a
        curl_easy_setopt(handle, CURL_COOKIEFILE, "")-call, handle->cookies was
        still NULL because the setopt-call only appends the value to
        data->change.cookielist, hence duplicating this handle would not have the
        cookie engine switched on.
      
        We also concluded that the slist-functionality would be suitable for being
        put in its own module rather than simply hanging out in lib/sendf.c so I
        created lib/slist.[ch] for them.
      bdec6f2b