Skip to content
  1. May 21, 2014
    • Daniel Stenberg's avatar
      bits.close: introduce connection close tracking · df13f8e8
      Daniel Stenberg authored
      Make all code use connclose() and connkeep() when changing the "close
      state" for a connection. These two macros take a string argument with an
      explanation, and debug builds of curl will include that in the debug
      output. Helps tracking connection re-use/close issues.
      df13f8e8
  2. May 20, 2014
  3. May 18, 2014
  4. May 17, 2014
  5. May 16, 2014
  6. May 15, 2014
  7. May 14, 2014
  8. May 12, 2014
  9. May 11, 2014
  10. May 09, 2014
  11. May 08, 2014
    • Patrick Watson's avatar
      mk-ca-bundle: added -p · 94898303
      Patrick Watson authored
      -p takes a list of Mozilla trust purposes and levels for certificates to
      include in output.  Takes the form of a comma separated list of
      purposes, a colon, and a comma separated list of levels.
      94898303
  12. May 07, 2014
    • Tatsuhiro Tsujikawa's avatar
      http2: Compile with latest nghttp2 · 6404896d
      Tatsuhiro Tsujikawa authored
      Now nghttp2_submit_request returns assigned stream ID, we don't have
      to check stream ID using before_stream_send_callback.  The
      adjust_priority_callback was removed.
      6404896d
    • Steve Holme's avatar
      url.c: Fixed compilation warning/error · 6f8085ca
      Steve Holme authored
      Depending on compiler line 3505 could generate the following warning or
      error:
      
      * warning: ISO C90 forbids mixed declarations and code
      * A declaration cannot appear after an executable statement in a block
      * error C2275: 'size_t' : illegal use of this type as an expression
      6f8085ca
  13. May 06, 2014
  14. May 05, 2014
  15. May 04, 2014
  16. May 03, 2014
  17. Apr 28, 2014
  18. Apr 27, 2014
  19. Apr 26, 2014
  20. Apr 25, 2014
  21. Apr 23, 2014
    • Daniel Stenberg's avatar
      handler: make 'protocol' always specified as a single bit · 710f14ed
      Daniel Stenberg authored
      This makes the findprotocol() function work as intended so that libcurl
      can properly be restricted to not support HTTP while still supporting
      HTTPS - since the HTTPS handler previously set both the HTTP and HTTPS
      bits in the protocol field.
      
      This fixes --proto and --proto-redir for most SSL protocols.
      
      This is done by adding a few new convenience defines that groups HTTP
      and HTTPS, FTP and FTPS etc that should then be used when the code wants
      to check for both protocols at once. PROTO_FAMILY_[protocol] style.
      
      Bug: https://github.com/bagder/curl/pull/97
      Reported-by: drizzt
      710f14ed
    • Dan Fandrich's avatar
      cyassl: Use error-ssl.h when available · 0204e17b
      Dan Fandrich authored
      Versions since at least 2.9.4 renamed error.h to error-ssl.h, so use
      whichever one is available.
      0204e17b
  22. Apr 22, 2014