Skip to content
  1. Apr 27, 2011
  2. Apr 26, 2011
  3. Apr 25, 2011
  4. Apr 24, 2011
  5. Apr 22, 2011
  6. Apr 21, 2011
  7. Apr 20, 2011
  8. Apr 19, 2011
  9. Apr 18, 2011
    • Daniel Stenberg's avatar
      transfer-encoding: document the options · 5aae3c13
      Daniel Stenberg authored
      The new libcurl and command line options are now described.
      5aae3c13
    • Daniel Stenberg's avatar
      transfer-encoding: added new option and cmdline · 8e4fb01e
      Daniel Stenberg authored
      Added CURLOPT_TRANSFER_ENCODING as the option to set to request Transfer
      Encoding in HTTP requests (if built zlib enabled). I also renamed
      CURLOPT_ENCODING to CURLOPT_ACCEPT_ENCODING (while keeping the old name
      around) to reduce the confusion when we have to encoding options for
      HTTP.
      
      --tr-encoding is now the new command line option for curl to request
      this, and thus I updated the test cases accordingly.
      8e4fb01e
    • Daniel Stenberg's avatar
    • Daniel Stenberg's avatar
      TE: do the Connection: header · 9d191a6a
      Daniel Stenberg authored
      When TE: is inserted in the request, we must add a "Connection: TE" as
      well to be HTTP 1.1 compliant. If a custom Connection: header is passed
      in, we must use that and only append TE to it. Test case 1125 verifies
      TE: + custom Connection:.
      9d191a6a
    • Daniel Stenberg's avatar
      TE: rename struct field content_encoding · 2db6f7e7
      Daniel Stenberg authored
      Since this struct member is used in the code to determine what and how
      to decode automatically and since it is now also used for compressed
      Transfer-Encodings, I renamed it to the more suitable 'auto_decoding'
      2db6f7e7
    • Daniel Stenberg's avatar
      HTTP: add support for gzip and deflate Transfer-Encoding · 0790b279
      Daniel Stenberg authored
      Transfer-Encoding differs from Content-Encoding in a few subtle ways,
      but primarily it concerns the transfer only and not the content so when
      discovered to be compressed we know we have to uncompress it. There will
      only arrive compressed transfers in a response after we have requested
      them with the appropriate TE: header.
      
      Test case 1122 and 1123 verify.
      0790b279
  10. Apr 17, 2011
  11. Apr 15, 2011
  12. Apr 14, 2011
  13. Apr 13, 2011
  14. Apr 11, 2011
  15. Apr 10, 2011
    • Daniel Stenberg's avatar
      OpenSSL: no-sslv2 aware · c66b0b32
      Daniel Stenberg authored
      Allow openSSL without SSL2 to be used. This fix is inspired by the fix
      provided by Cristian Rodrguez.
      
      Reported by: Cristian Rodrguez
      c66b0b32
  16. Apr 08, 2011
  17. Apr 07, 2011
    • Daniel Stenberg's avatar
      mk-ca-bundle.pl: show full URL in output · 23544f35
      Daniel Stenberg authored
      When I decided to search for a potential error with the cacert bundle it
      struck me I wanted to see the full source URL in the output...
      23544f35
    • Gisle Vanem's avatar
      lib/Makefile.b32: updates · 89fa3b3e
      Gisle Vanem authored
      * Rename the object object directory from 'objs' to 'BCC_obj'. I feel
       it should be named properly. Ref. Makefile.Watcom where it's called
       'WC_Win32.obj'.
      
      * Turn off these warnings to keep the build totally silent (with CBuilder-6
       that is).
        -w-inl    8026 Functions X are not expanded inline.
        -w-pia   8060 Possibly incorrect assignment
        -w-pin  8061 Initialization is only partially bracketed
      
      I'm sure the warnings could be fixed the "proper" way or with some added
      "#pragma" statements. But that just clutters the sources IMHO.
      
      * $(MKDIR) and $(RMDIR) have been replaced with the shell-commands 'md'
       and 'rd'. When having MingW/Msys programs 'mkdir.exe' and 'rmdir.exe' in
      $PATH, this confuses Borland's make and the result (the cleaning etc.) would
       not be as expected.
      
      * Added a ".path.int = $(OBJDIR)" to tell make where the $(PREPROCESSED)
       files are. Why we need the preprocess step in the fist place is beyond me
      (Yang?). But I'll leave that for now.
      89fa3b3e