1. 14 Aug, 2016 3 commits
  2. 13 Aug, 2016 2 commits
  3. 12 Aug, 2016 1 commit
  4. 11 Aug, 2016 3 commits
  5. 10 Aug, 2016 2 commits
    • Daniel Stenberg's avatar
      RELEASE-NOTES: synced with e577c43b · 6301692f
      Daniel Stenberg authored
      6301692f
    • Erik Janssen's avatar
      rtsp: accept any RTSP session id · e577c43b
      Erik Janssen authored
      Makes libcurl work in communication with gstreamer-based RTSP
      servers. The original code validates the session id to be in accordance
      with the RFC. I think it is better not to do that:
      
      - For curl the actual content is a don't care.
      
      - The clarity of the RFC is debatable, is $ allowed or only as \$, that
        is imho not clear
      
      - Gstreamer seems to url-encode the session id but % is not allowed by
      the RFC
      
      - less code
      
      With this patch curl will correctly handle real-life lines like:
      Session: biTN4Kc.8%2B1w-AF.; timeout=60
      
      Bug: https://curl.haxx.se/mail/lib-2016-08/0076.html
      e577c43b
  6. 09 Aug, 2016 17 commits
  7. 08 Aug, 2016 4 commits
  8. 07 Aug, 2016 1 commit
  9. 04 Aug, 2016 4 commits
  10. 03 Aug, 2016 3 commits
    • Serj Kalichev's avatar
      TFTP: Fix upload problem with piped input · edeabf74
      Serj Kalichev authored
      When input stream for curl is stdin and input stream is not a file but
      generated by a script then curl can truncate data transfer to arbitrary
      size since a partial packet is treated as end of transfer by TFTP.
      
      Fixes #857
      edeabf74
    • Daniel Stenberg's avatar
      mk-ca-bundle.pl: -m keeps ca cert meta data in output · 600bb4e8
      Daniel Stenberg authored
      Makes the script pass on comments holding meta data to the output
      file. Like fingerprinters, issuer, date ranges etc.
      
      Closes #937
      600bb4e8
    • Daniel Stenberg's avatar
      multi: make Curl_expire() work with 0 ms timeouts · bde2f09d
      Daniel Stenberg authored
      Previously, passing a timeout of zero to Curl_expire() was a magic code
      for clearing all timeouts for the handle. That is now instead made with
      the new Curl_expire_clear() function and thus a 0 timeout is fine to set
      and will trigger a timeout ASAP.
      
      This will help removing short delays, in particular notable when doing
      HTTP/2.
      bde2f09d