1. 05 Sep, 2008 4 commits
    • Daniel Stenberg's avatar
      - Martin Drasar provided the CURLOPT_POSTREDIR patch. It renames · 18110b51
      Daniel Stenberg authored
        CURLOPT_POST301 (but adds a define for backwards compatibility for you who
        don't define CURL_NO_OLDIES). This option allows you to now also change the
        libcurl behavior for a HTTP response 302 after a POST to not use GET in the
        subsequent request (when CURLOPT_FOLLOWLOCATION is enabled). I edited the
        patch somewhat before commit. The curl tool got a matching --post302
        option. Test case 1076 was added to verify this.
      18110b51
    • Daniel Stenberg's avatar
      - Introducing CURLOPT_CERTINFO and the corresponding CURLINFO_CERTINFO. By · 4c976856
      Daniel Stenberg authored
        enabling this feature with CURLOPT_CERTINFO for a request using SSL (HTTPS
        or FTPS), libcurl will gather lots of server certificate info and that info
        can then get extracted by a client after the request has completed with
        curl_easy_getinfo()'s CURLINFO_CERTINFO option. Linus Nielsen Feltzing
        helped me test and smoothen out this feature.
      
        Unfortunately, this feature currently only works with libcurl built to use
        OpenSSL.
      
        This feature was sponsored by networking4all.com - thanks!
      4c976856
    • Daniel Stenberg's avatar
      - Dmitriy Sergeyev pointed out that curl_easy_pause() didn't unpause properly · 873e734c
      Daniel Stenberg authored
        during certain conditions. I also changed this code to use realloc() based
        on Daniel Fandrich's suggestion.
      873e734c
    • Yang Tse's avatar
      sync with reality · 29f7f468
      Yang Tse authored
      29f7f468
  2. 04 Sep, 2008 1 commit
  3. 03 Sep, 2008 1 commit
  4. 02 Sep, 2008 2 commits
  5. 01 Sep, 2008 1 commit
  6. 29 Aug, 2008 2 commits
  7. 28 Aug, 2008 3 commits
  8. 27 Aug, 2008 1 commit
  9. 26 Aug, 2008 2 commits
  10. 23 Aug, 2008 2 commits
  11. 22 Aug, 2008 3 commits
  12. 21 Aug, 2008 1 commit
  13. 20 Aug, 2008 3 commits
  14. 18 Aug, 2008 1 commit
  15. 17 Aug, 2008 1 commit
    • Yang Tse's avatar
      OpenSSl enabled NetWare builds are changed to use the 'openssl' subdirectory · fb8fe6f2
      Yang Tse authored
      when including the OpenSSL header files. This is the recommended setting, this
      prevents the undesired inclusion of header files with the same name as those
      of OpenSSL but which do not belong to the OpenSSL package. The visible change
      from previously released libcurl versions is that now OpenSSl enabled NetWare
      builds also define USE_OPENSSL in config files, and that OpenSSL header files
      must be located in a subdirectory named 'openssl'.
      fb8fe6f2
  16. 16 Aug, 2008 1 commit
    • Yang Tse's avatar
      Library internal only C preprocessor macros FORMAT_OFF_T and FORMAT_OFF_TU · ad638da2
      Yang Tse authored
      remain in use as internal curl_off_t print formatting strings for the internal
      *printf functions which still cannot handle print formatting string directives
      such as "I64d", "I64u", and others available on MSVC, MinGW, Intel's ICC, and
      other DOS/Windows compilers.
      
      This reverts previous commit part which did:
      
      FORMAT_OFF_T  -> CURL_FORMAT_CURL_OFF_T
      FORMAT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU
      ad638da2
  17. 15 Aug, 2008 2 commits
    • Dan Fandrich's avatar
      Added test case 1065 to test a PUT with a single file but two URLs. This · a923d854
      Dan Fandrich authored
      was discovered to be problematic while investigating an incident reported by
      Von back in May.  curl in this case doesn't include a Content-Length: or
      Transfer-Encoding: chunked header which is illegal. This test case is
      added to DISABLED until a solution is found.
      a923d854
    • Yang Tse's avatar
      For congruency sake with the naming of other CURL_XXXXXX_CURL_OFF_T macros, · 66fb9ca5
      Yang Tse authored
      the names of the curl_off_t formatting string directives now become
      CURL_FORMAT_CURL_OFF_T and CURL_FORMAT_CURL_OFF_TU.
      
      CURL_FMT_OFF_T  -> CURL_FORMAT_CURL_OFF_T
      CURL_FMT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU
      
      Remove the use of an internal name for the curl_off_t formatting string directives
      and use the common one available from the inside and outside of the library.
      
      FORMAT_OFF_T  -> CURL_FORMAT_CURL_OFF_T
      FORMAT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU
      66fb9ca5
  18. 13 Aug, 2008 2 commits
  19. 12 Aug, 2008 3 commits
  20. 11 Aug, 2008 4 commits