1. 04 Apr, 2019 1 commit
  2. 03 Apr, 2019 2 commits
  3. 02 Apr, 2019 2 commits
  4. 01 Apr, 2019 2 commits
  5. 31 Mar, 2019 2 commits
  6. 28 Mar, 2019 1 commit
  7. 27 Mar, 2019 4 commits
  8. 26 Mar, 2019 3 commits
  9. 25 Mar, 2019 2 commits
  10. 24 Mar, 2019 3 commits
  11. 22 Mar, 2019 3 commits
  12. 20 Mar, 2019 2 commits
  13. 18 Mar, 2019 1 commit
  14. 17 Mar, 2019 2 commits
  15. 15 Mar, 2019 5 commits
  16. 14 Mar, 2019 5 commits
    • Daniel Stenberg's avatar
      makefile: make checksrc and hugefile commands "silent" · 5cf5d57a
      Daniel Stenberg authored
      ... to match the style already used for compiling, linking
      etc. Acknowledges 'make V=1' to enable verbose.
      
      Closes #3681
      5cf5d57a
    • Daniel Stenberg's avatar
      curl.1: --user and --proxy-user are hidden from ps output · 2af732f3
      Daniel Stenberg authored
      Suggested-by: Eric Curtin
      Improved-by: Dan Fandrich
      Ref: #3680
      
      Closes #3683
      2af732f3
    • Daniel Stenberg's avatar
      curl.1: mark the argument to --cookie as <data|filename> · 05a131eb
      Daniel Stenberg authored
      From a discussion in #3676
      
      Suggested-by: Tim Rühsen
      
      Closes #3682
      05a131eb
    • Dan Fandrich's avatar
      69714789
    • Dominik Hölzl's avatar
      Negotiate: fix for HTTP POST with Negotiate · 6c603553
      Dominik Hölzl authored
      * Adjusted unit tests 2056, 2057
      * do not generally close connections with CURLAUTH_NEGOTIATE after every request
      * moved negotiatedata from UrlState to connectdata
      * Added stream rewind logic for CURLAUTH_NEGOTIATE
      * introduced negotiatedata::GSS_AUTHDONE and negotiatedata::GSS_AUTHSUCC
      * Consider authproblem state for CURLAUTH_NEGOTIATE
      * Consider reuse_forbid for CURLAUTH_NEGOTIATE
      * moved and adjusted negotiate authentication state handling from
        output_auth_headers into Curl_output_negotiate
      * Curl_output_negotiate: ensure auth done is always set
      * Curl_output_negotiate: Set auth done also if result code is
        GSS_S_CONTINUE_NEEDED/SEC_I_CONTINUE_NEEDED as this result code may
        also indicate the last challenge request (only works with disabled
        Expect: 100-continue and CURLOPT_KEEP_SENDING_ON_ERROR -> 1)
      * Consider "Persistent-Auth" header, detect if not present;
        Reset/Cleanup negotiate after authentication if no persistent
        authentication
      * apply changes introduced with #2546 for negotiate rewind logic
      
      Fixes #1261
      Closes #1975
      6c603553