Skip to content
Snippets Groups Projects
  1. Dec 02, 2010
  2. Nov 28, 2010
  3. Nov 26, 2010
  4. Nov 12, 2010
  5. Nov 10, 2010
  6. Nov 08, 2010
    • Daniel Stenberg's avatar
      fc6c4c10
    • Daniel Stenberg's avatar
      5d4355f1
    • Daniel Stenberg's avatar
      CURLOPT_RESOLVE: added · 1b24b89c
      Daniel Stenberg authored
      CURLOPT_RESOLVE is a new option that sends along a curl_slist with
      name:port:address sets that will populate the DNS cache with entries so
      that request can be "fooled" to use another host than what otherwise
      would've been used. Previously we've encouraged the use of Host: for
      that when dealing with HTTP, but this new feature has the added bonus
      that it allows the name from the URL to be used for TLS SNI and server
      certificate name checks as well.
      
      This is a first change. Surely more will follow to make it decent.
      1b24b89c
  7. Nov 07, 2010
  8. Nov 05, 2010
    • Daniel Stenberg's avatar
      --libcurl: simplify output · 517d3eb0
      Daniel Stenberg authored
      Removed the code that was needed for libcurl before 7.19.0 which now is
      more than two years old.
      
      Simplified the top comment and corrected the URL.
      517d3eb0
    • Daniel Stenberg's avatar
      xattr: add configure check and #ifdefs · 95719fbe
      Daniel Stenberg authored
      setxattr is a glibc call to set extended attributes, so configure now
      checks for it and the code is adapted to only build when the
      functionality is present.
      95719fbe
    • Stefan Tomanek's avatar
      save metadata to extended file attributes · fbf51696
      Stefan Tomanek authored
      It is often convinient to track back the source of a once downloaded
      file; this patch makes curl store the source URL and other metadata
      alongside the retrieved file by using the extended attributes (if
      supported by the file system and enabled by --xattr).
      fbf51696
  9. Oct 21, 2010
  10. Oct 14, 2010
  11. Oct 13, 2010
  12. Oct 12, 2010
  13. Oct 10, 2010
  14. Oct 08, 2010
  15. Oct 03, 2010
    • Guenter Knauf's avatar
      Some NetWare makefile tweaks. · 81e10701
      Guenter Knauf authored
      Renamed SDK_* to NDK_*; made NDK_* defines overwriteable from
      environment; removed now obsolete YACC macro;
      moved some curl_config.h defines to IPv6 section since they
      are only needed when IPv6 is enabled - this makes libcurl compile
      with older NDKs too which were not IPv6-aware.
      81e10701
  16. Sep 16, 2010
  17. Sep 12, 2010
  18. Sep 03, 2010
  19. Sep 02, 2010
  20. Sep 01, 2010
  21. Aug 25, 2010
  22. Aug 24, 2010
  23. Aug 20, 2010
    • Daniel Stenberg's avatar
      cmdline: make -F type= accept ;charset= · eeb2cb05
      Daniel Stenberg authored
      The -F option allows some custom parameters within the given string, and
      those strings are separated with semicolons. You can for example specify
      "name=daniel;type=text/plain" to set content-type for the
      field. However, the use of semicolons like that made it not work fine if
      you specified one within the content-type, like for:
      "name=daniel;type=text/plain;charset=UTF-8"
      ... as the second one would be seen as a separator and "charset" is no
      parameter curl knows anything about so it was just silently discarded.
      
      The new logic now checks if the semicolon and following keyword looks
      like a parameter it knows about and if it isn't it is assumed to be
      meant to be used within the content-type string itself.
      
      I modified test case 186 to verify that this works as intended.
      
      Reported by: Larry Stone
      Bug: http://curl.haxx.se/bug/view.cgi?id=3048988
      eeb2cb05
  24. Aug 19, 2010
  25. Aug 18, 2010
  26. Aug 15, 2010
  27. Aug 11, 2010
Loading