1. 29 Aug, 2022 4 commits
  2. 26 Aug, 2022 3 commits
  3. 19 Aug, 2022 1 commit
  4. 17 Aug, 2022 1 commit
  5. 16 Aug, 2022 1 commit
  6. 15 Aug, 2022 1 commit
    • Stan Hu's avatar
      Make it possible to set SSL verify mode · 71119a71
      Stan Hu authored
      If no SSL certificates are provided, many Redis clients default to
      disabling SSL peer verification. Previously it was a bit cumbersome to
      configure this because the client would either have to reimplement
      `redisCreateSSLContext()` or reach into the internals to set the
      OpenSSL verify mode.
      
      We can improve the SSL API by introducing a
      `redisCreateSSLContextWithOptions()` call that takes into structured
      parameters for SSL initialization. This structure contains a verify
      mode that is used to set the OpenSSL verify mode.
      
      Relates to https://github.com/redis/hiredis/issues/646
      71119a71
  7. 10 Aug, 2022 3 commits
  8. 05 Aug, 2022 1 commit
  9. 04 Aug, 2022 2 commits
  10. 31 Jul, 2022 1 commit
  11. 25 Jul, 2022 1 commit
  12. 08 Jul, 2022 3 commits
  13. 07 Jul, 2022 1 commit
  14. 05 Jul, 2022 3 commits
  15. 26 Jun, 2022 12 commits
  16. 04 May, 2022 1 commit
  17. 24 Apr, 2022 1 commit
    • Orgad Shaneh's avatar
      Fix warnings on Win64 · eedb37a6
      Orgad Shaneh authored
      read.c:399:27: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
        399 |                     obj = (void*)(long)cur->type;
            |                           ^
      eedb37a6