Skip to content
Snippets Groups Projects
  1. Nov 20, 2014
  2. Nov 13, 2014
  3. Nov 10, 2014
    • Peter Wu's avatar
      symbol-scan.pl: do not require autotools · dd469eec
      Peter Wu authored
      
      Makes test1119 pass when building with cmake.
      
      configurehelp.pm is generated by configure (autotools). As cmake does
      not provide a separate variable for the C preprocessor, default to cpp.
      Before commit ef24ecde ("symbol-scan:
      use configure script knowledge about how to run the C preprocessor"),
      this tool would also use 'cpp'.
      
      Signed-off-by: default avatarPeter Wu <peter@lekensteyn.nl>
      dd469eec
    • Peter Wu's avatar
      cmake: add ENABLE_THREADED_RESOLVER, rename ARES · 17d27805
      Peter Wu authored
      
      Fix detection of the AsynchDNS feature which not just depends on
      pthreads support, but also on whether USE_POSIX_THREADS is set or not.
      Caught by test 1014.
      
      This patch adds a new ENABLE_THREADED_RESOLVER option (corresponding to
      --enable-threaded-resolver of autotools) which also needs a check for
      HAVE_PTHREAD_H.
      
      For symmetry with autotools, CURL_USE_ARES is renamed to ENABLE_ARES
      (--enable-ares). Checks that test for the availability actually use
      USE_ARES instead as that is the result of whether a-res is available or
      not (in practice this does not matter as CARES is marked as required
      package, but nevertheless it is better to write the intent).
      
      Signed-off-by: default avatarPeter Wu <peter@lekensteyn.nl>
      17d27805
    • Peter Wu's avatar
      cmake: build libhostname for test suite · 767aaf58
      Peter Wu authored
      
      Used by some test cases via LD_PRELOAD in order to fake the host name.
      
      Signed-off-by: default avatarPeter Wu <peter@lekensteyn.nl>
      767aaf58
    • Peter Wu's avatar
      tests: fix libhostname visibility · 7bdfdd09
      Peter Wu authored
      
      I noticed that a patched cmake build would pass tests with a fake local
      hostname, but the autotools build skips them:
      
          got unexpected host name back, LD_PRELOAD failed
      
      It turns out that -fvisibility=hidden hides the symbol, and since the
      tests are not part of libcurl, it fails too. Just remove the LIBCURL
      guard.
      
      Broken since cURL 7.30 (commit 83a42ee2,
      "curl.h: stricter CURL_EXTERN linkage decorations logic").
      
      Signed-off-by: default avatarPeter Wu <peter@lekensteyn.nl>
      7bdfdd09
    • Peter Wu's avatar
      tests: fix memleak in server/resolve.c · a5ad43af
      Peter Wu authored
      
      This makes LeakSanitizer happy.
      
      Signed-off-by: default avatarPeter Wu <peter@lekensteyn.nl>
      a5ad43af
  4. Nov 06, 2014
  5. Nov 05, 2014
  6. Nov 04, 2014
  7. Nov 01, 2014
  8. Oct 27, 2014
  9. Oct 26, 2014
  10. 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
  11. Oct 13, 2014
  12. Oct 10, 2014
  13. Oct 09, 2014
  14. 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
  15. Sep 26, 2014
  16. Sep 25, 2014
  17. Sep 10, 2014
  18. Sep 07, 2014
  19. Aug 15, 2014
  20. Aug 07, 2014
  21. Jul 26, 2014
Loading