1. 15 Jun, 2014 1 commit
  2. 13 Jun, 2014 2 commits
  3. 12 Jun, 2014 1 commit
  4. 11 Jun, 2014 5 commits
  5. 10 Jun, 2014 1 commit
  6. 09 Jun, 2014 1 commit
  7. 06 Jun, 2014 1 commit
  8. 05 Jun, 2014 4 commits
  9. 04 Jun, 2014 1 commit
  10. 03 Jun, 2014 2 commits
  11. 02 Jun, 2014 2 commits
  12. 01 Jun, 2014 5 commits
  13. 29 May, 2014 1 commit
  14. 28 May, 2014 3 commits
  15. 27 May, 2014 3 commits
  16. 26 May, 2014 2 commits
  17. 25 May, 2014 1 commit
  18. 24 May, 2014 2 commits
  19. 23 May, 2014 2 commits
    • Daniel Stenberg's avatar
      configure: detect nghttp2 by default · 2ddd69ef
      Daniel Stenberg authored
      2ddd69ef
    • Tatsuhiro Tsujikawa's avatar
      openssl: Fix uninitialized variable use in NPN callback · c7638d93
      Tatsuhiro Tsujikawa authored
      OpenSSL passes out and outlen variable uninitialized to
      select_next_proto_cb callback function.  If the callback function
      returns SSL_TLSEXT_ERR_OK, the caller assumes the callback filled
      values in out and outlen and processes as such.  Previously, if there
      is no overlap in protocol lists, curl code does not fill any values in
      these variables and returns SSL_TLSEXT_ERR_OK, which means we are
      triggering undefined behavior.  valgrind warns this.
      
      This patch fixes this issue by fallback to HTTP/1.1 if there is no
      overlap.
      c7638d93