Skip to content
Snippets Groups Projects
  1. Dec 12, 2009
  2. Nov 27, 2009
  3. Nov 05, 2009
  4. Nov 04, 2009
  5. Oct 27, 2009
  6. Oct 16, 2009
  7. Sep 27, 2009
    • Daniel Stenberg's avatar
      - I introduced a maximum limit for received HTTP headers. It is controlled by · 8646cecb
      Daniel Stenberg authored
        the define CURL_MAX_HTTP_HEADER which is even exposed in the public header
        file to allow for users to fairly easy rebuild libcurl with a modified
        limit. The rationale for a fixed limit is that libcurl is realloc()ing a
        buffer to be able to put a full header into it, so that it can call the
        header callback with the entire header, but that also risk getting it into
        trouble if a server by mistake or willingly sends a header that is more or
        less without an end. The limit is set to 100K.
      8646cecb
  8. Sep 01, 2009
  9. Aug 31, 2009
  10. Aug 12, 2009
  11. Aug 11, 2009
  12. Jul 22, 2009
  13. Jul 15, 2009
  14. Jun 10, 2009
    • Yang Tse's avatar
      Adjusted to take in account that... · 2c166812
      Yang Tse authored
      With the curl memory tracking feature decoupled from the debug build feature,
      CURLDEBUG and DEBUGBUILD preprocessor symbol definitions are used as follows:
      
      CURLDEBUG used for curl debug memory tracking specific code (--enable-curldebug)
      
      DEBUGBUILD used for debug enabled specific code (--enable-debug)
      2c166812
  15. Jun 06, 2009
  16. Jun 04, 2009
  17. Jun 01, 2009
  18. May 30, 2009
  19. May 28, 2009
  20. May 18, 2009
  21. May 12, 2009
  22. May 11, 2009
  23. May 06, 2009
  24. May 04, 2009
  25. May 02, 2009
  26. May 01, 2009
  27. Apr 29, 2009
  28. Apr 28, 2009
    • Daniel Stenberg's avatar
      - Bug report #2709004 (http://curl.haxx.se/bug/view.cgi?id=2709004) by Tim · e01b7c1e
      Daniel Stenberg authored
        Chen pointed out how curl couldn't upload with resume when reading from a
        pipe.
      
        This ended up with the introduction of a new return code for the
        CURLOPT_SEEKFUNCTION callback that basically says that the seek failed but
        that libcurl may try to resolve the situation anyway. In our case this means
        libcurl will attempt to instead read that much data from the stream instead
        of seeking and that way curl can now upload with resume when data is read
        from a stream!
      e01b7c1e
  29. Apr 26, 2009
  30. Apr 09, 2009
  31. Apr 08, 2009
  32. 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
    • Benoit Neil's avatar
      Initial CMake scripts (libcurl only), based on the merge of tetest scripts and... · 4c5307b4
      Benoit Neil authored
      Initial CMake scripts (libcurl only), based on the merge of tetest scripts and mine. These are far to be functionnal yet.
      PS: Hello world :)
      4c5307b4
Loading