Skip to content
Snippets Groups Projects
  1. Jan 28, 2009
  2. Jan 26, 2009
  3. Jan 25, 2009
  4. Jan 21, 2009
    • Dan Fandrich's avatar
      Fixed a couple more locale-dependent toupper conversions, mainly for · 55915501
      Dan Fandrich authored
      clarity.  This does fix one problem that causes ;type=i FTP URLs
      to fail in the Turkish locale when CURLOPT_PROXY_TRANSFER_MODE is
      used (test case 561)
      
      Added tests 561 and 1092 through 1094 to test various combinations
      of ;type= and ;mode= URLs that could potentially fail in the Turkish
      locale.
      55915501
  5. Jan 08, 2009
  6. Dec 29, 2008
  7. Dec 19, 2008
  8. Dec 12, 2008
  9. Dec 11, 2008
  10. Dec 10, 2008
    • Daniel Stenberg's avatar
      - Internet Explorer had a broken HTTP digest authentication before v7 and · 6e376532
      Daniel Stenberg authored
        there are servers "out there" that relies on the client doing this broken
        Digest authentication. Apache even comes with an option to work with such
        broken clients.
      
        The difference is only for URLs that contain a query-part (a '?'-letter and
        text to the right of it).
      
        libcurl now supports this quirk, and you enable it by setting the
        CURLAUTH_DIGEST_IE bit in the bitmask you pass to the CURLOPT_HTTPAUTH or
        CURLOPT_PROXYAUTH options. They are thus individually controlled to server
        and proxy.
      6e376532
  11. Dec 03, 2008
  12. Nov 19, 2008
    • Daniel Stenberg's avatar
      - Andreas Wurf and Markus Koetter helped me analyze a problem that Andreas got · 797bc850
      Daniel Stenberg authored
        when uploading files to a single FTP server using multiple easy handle
        handles with the multi interface. Occasionally a handle would stall in
        mysterious ways.
      
        The problem turned out to be a side-effect of the ConnectionExists()
        function's eagerness to re-use a handle for HTTP pipelining so it would
        select it even if already being in use, due to an inadequate check for its
        chances of being used for pipelnining.
      797bc850
  13. Nov 05, 2008
  14. Nov 03, 2008
  15. Oct 23, 2008
  16. Oct 19, 2008
  17. Oct 17, 2008
  18. Oct 16, 2008
  19. Oct 15, 2008
    • Daniel Stenberg's avatar
      - Pascal Terjan filed bug #2154627 · a579d670
      Daniel Stenberg authored
        (http://curl.haxx.se/bug/view.cgi?id=2154627) which pointed out that libcurl
        uses strcasecmp() in multiple places where it causes failures when the
        Turkish locale is used. This is because 'i' and 'I' isn't the same letter so
        strcasecmp() on those letters are different in Turkish than in English (or
        just about all other languages). I thus introduced a totally new internal
        function in libcurl (called Curl_ascii_equal) for doing case insentive
        comparisons for english-(ascii?) style strings that thus will make "file"
        and "FILE" match even if the Turkish locale is selected.
      a579d670
  20. Oct 14, 2008
  21. Oct 10, 2008
  22. Oct 08, 2008
  23. Oct 07, 2008
  24. Sep 29, 2008
  25. Sep 24, 2008
  26. Sep 19, 2008
Loading