Skip to content
Snippets Groups Projects
  1. Mar 14, 2015
  2. Mar 13, 2015
  3. Mar 12, 2015
  4. Mar 11, 2015
  5. Feb 03, 2015
  6. Feb 02, 2015
  7. Jan 28, 2015
  8. Jan 27, 2015
  9. Jan 07, 2015
  10. Dec 28, 2014
  11. Dec 26, 2014
  12. Dec 04, 2014
    • Peter Wu's avatar
      tests: add two HTTP over UNIX socket tests · 479abdd3
      Peter Wu authored
      
      test1435: a simple test that checks whether a HTTP request can be
      performed over the UNIX socket. The hostname/port are interpreted
      by sws and should be ignored by cURL.
      
      test1436: test for the ability to do two requests to the same host,
      interleaved with one to a different hostname.
      
      Signed-off-by: default avatarPeter Wu <peter@lekensteyn.nl>
      479abdd3
  13. Nov 30, 2014
  14. Nov 29, 2014
  15. Nov 26, 2014
  16. Nov 24, 2014
  17. Nov 20, 2014
  18. Nov 13, 2014
  19. Nov 06, 2014
  20. Nov 04, 2014
  21. Nov 01, 2014
  22. Oct 27, 2014
  23. Oct 26, 2014
  24. Oct 16, 2014
    • Daniel Stenberg's avatar
      test545: make it not use a trailing zero · d938d5e6
      Daniel Stenberg authored
      CURLOPT_COPYPOSTFIELDS with a given CURLOPT_POSTFIELDSIZE does not
      require a trailing zero of the data and by making sure this test doesn't
      use one we know it works (combined with valgrind).
      d938d5e6
  25. Oct 13, 2014
  26. Oct 09, 2014
  27. Oct 07, 2014
    • Travis Burtrum's avatar
      SSL: implement public key pinning · 93e45079
      Travis Burtrum authored
      Option --pinnedpubkey takes a path to a public key in DER format and
      only connect if it matches (currently only implemented with OpenSSL).
      
      Provides CURLOPT_PINNEDPUBLICKEY for curl_easy_setopt().
      
      Extract a public RSA key from a website like so:
      openssl s_client -connect google.com:443 2>&1 < /dev/null | \
      sed -n '/-----BEGIN/,/-----END/p' | openssl x509 -noout -pubkey \
      | openssl rsa -pubin -outform DER > google.com.der
      93e45079
  28. Sep 25, 2014
  29. Sep 10, 2014
  30. Sep 07, 2014
    • Brandon Casey's avatar
      Ensure progress.size_dl/progress.size_ul are always >= 0 · 6beb0eee
      Brandon Casey authored
      
      Historically the default "unknown" value for progress.size_dl and
      progress.size_ul has been zero, since these values are initialized
      implicitly by the calloc that allocates the curl handle that these
      variables are a part of.  Users of curl that install progress
      callbacks may expect these values to always be >= 0.
      
      Currently it is possible for progress.size_dl and progress.size_ul
      to by set to a value of -1, if Curl_pgrsSetDownloadSize() or
      Curl_pgrsSetUploadSize() are passed a "size" of -1 (which a few
      places currently do, and a following patch will add more).  So
      lets update Curl_pgrsSetDownloadSize() and Curl_pgrsSetUploadSize()
      so they make sure that these variables always contain a value that
      is >= 0.
      
      Updates test579 and test599.
      
      Signed-off-by: default avatarBrandon Casey <drafnel@gmail.com>
      6beb0eee
    • Steve Holme's avatar
      tests: Added test1420 to the makefile · 8acbb074
      Steve Holme authored
      8acbb074
Loading