You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kvrocks.apache.org by tw...@apache.org on 2022/09/11 08:06:51 UTC

[incubator-kvrocks] branch unstable updated (6715700 -> 9240ba4)

This is an automated email from the ASF dual-hosted git repository.

twice pushed a change to branch unstable
in repository https://gitbox.apache.org/repos/asf/incubator-kvrocks.git


    from 6715700  move to dedicated pacakge (#852)
     add 9240ba4  Add TLS support for kvrocks connections (#797)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/kvrocks.yaml     |  31 ++++-
 CMakeLists.txt                     |  28 +++--
 README.md                          |   9 +-
 cmake/libevent.cmake               |  10 +-
 kvrocks.conf                       |  78 ++++++++++++
 src/config.cc                      |  47 +++++++-
 src/config.h                       |  18 ++-
 src/main.cc                        |  20 ++-
 src/redis_connection.cc            |  10 +-
 src/server.cc                      |  11 ++
 src/server.h                       |   5 +
 src/tls_util.cc                    | 241 +++++++++++++++++++++++++++++++++++++
 src/tls_util.h                     |  68 +++++++++++
 src/util.cc                        |  16 +++
 src/util.h                         |   1 +
 src/worker.cc                      |  72 +++++++++--
 src/worker.h                       |   1 -
 tests/tcl/tests/support/server.tcl |   3 +-
 tests/tcl/tests/unit/tls.tcl       |  40 +++---
 19 files changed, 649 insertions(+), 60 deletions(-)
 create mode 100644 src/tls_util.cc
 create mode 100644 src/tls_util.h