1. 02 Jul, 2018 3 commits
  2. 01 Jul, 2018 1 commit
    • Gisle Vanem's avatar
      telnet: fix clang warnings · ab4cf996
      Gisle Vanem authored
      telnet.c(1401,28): warning: cast from function call of type 'int' to
      non-matching type 'HANDLE' (aka 'void *') [-Wbad-function-cast]
      
      Fixes #2696
      Closes #2700
      ab4cf996
  3. 30 Jun, 2018 1 commit
  4. 29 Jun, 2018 4 commits
  5. 28 Jun, 2018 1 commit
    • Adrian Peniak's avatar
      CURLINFO_TLS_SSL_PTR.3: improve the example · 24cb114c
      Adrian Peniak authored
      The previous example was a little bit confusing, because SSL* structure
      (or other "in use" SSL connection pointer) is not accessible after the
      transfer is completed, therefore working with the raw TLS library
      specific pointer needs to be done during transfer.
      
      Closes #2690
      24cb114c
  6. 27 Jun, 2018 7 commits
  7. 25 Jun, 2018 2 commits
  8. 24 Jun, 2018 2 commits
  9. 23 Jun, 2018 3 commits
  10. 22 Jun, 2018 1 commit
  11. 21 Jun, 2018 3 commits
  12. 18 Jun, 2018 1 commit
  13. 17 Jun, 2018 1 commit
  14. 16 Jun, 2018 1 commit
    • Daniel Stenberg's avatar
      multi: fix memory leak when stopped during name resolve · ac9a179f
      Daniel Stenberg authored
      When the application just started the transfer and then stops it while
      the name resolve in the background thread hasn't completed, we need to
      wait for the resolve to complete and then cleanup data accordingly.
      
      Enabled test 1553 again and added test 1590 to also check when the host
      name resolves successfully.
      
      Detected by OSS-fuzz.
      Closes #1968
      ac9a179f
  15. 15 Jun, 2018 7 commits
  16. 14 Jun, 2018 2 commits
    • Mamta Upadhyay's avatar
      maketgz: fix sed issues on OSX · cf448436
      Mamta Upadhyay authored
      maketgz creates release tarballs and removes the -DEV string in curl
      version (e.g. 7.58.0-DEV), else -DEV shows up on command line when curl
      is run. maketgz works fine on linux but fails on OSX. Problem is with
      the sed commands that use option -i without an extension. Maketgz
      expects GNU sed instead of BSD and this simply won't work on OSX. Adding
      a backup extension .bak after -i fixes this issue
      
      Running the script as if on OSX gives this error:
      
      sed: -e: No such file or directory
      
      Adding a .bak extension resolves it
      
      Closes #2660
      cf448436
    • Daniel Stenberg's avatar
      configure: enhance ability to detect/build with static openssl · 351dabbf
      Daniel Stenberg authored
      Fix the -ldl and -ldl + -lpthread checks for OpenSSL, necessary for
      building with static libs without pkg-config.
      
      Reported-by: Marcel Raad
      Fixes #2199
      Closes #2659
      351dabbf