Skip to content

Commit

Permalink
increment wolfssl version and enable verbose log flag
Browse files Browse the repository at this point in the history
  • Loading branch information
radkesvat committed Jun 9, 2024
1 parent 8881316 commit 0fe6ca4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tunnels/client/wolfssl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ include(${CMAKE_BINARY_DIR}/cmake/CPM.cmake)
# todo (WOLFSSL_CRYPTOCB) check this option doing anything useful and required or not (enables padding settings like openssl?)
CPMAddPackage(
NAME wolfssl
VERSION 5.6.6-stable
VERSION 5.7.0-stable
GITHUB_REPOSITORY wolfSSL/wolfssl
OPTIONS
"WOLFSSL_REPRODUCIBLE_BUILD ON"
Expand All @@ -39,7 +39,7 @@ CPMAddPackage(
"WOLFSSL_ASYNC_THREADS OFF"
"BUILD_SHARED_LIBS OFF"
)
target_compile_definitions(wolfssl PRIVATE NO_WOLFSSL_STUB=1)
target_compile_definitions(wolfssl PRIVATE NO_WOLFSSL_STUB=1 DEBUG_WOLFSSL_VERBOSE=1)
target_compile_definitions(WolfSSLClient PRIVATE WolfSSLClient_VERSION=0.1)


Expand Down
4 changes: 2 additions & 2 deletions tunnels/server/wolfssl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ include(${CMAKE_BINARY_DIR}/cmake/CPM.cmake)
# todo (WOLFSSL_CRYPTOCB) check this option doing anything useful and required or not (enables padding settings like openssl?)
CPMAddPackage(
NAME wolfssl
VERSION 5.6.6-stable
VERSION 5.7.0-stable
GITHUB_REPOSITORY wolfSSL/wolfssl
OPTIONS
"WOLFSSL_REPRODUCIBLE_BUILD ON"
Expand All @@ -40,7 +40,7 @@ CPMAddPackage(
"WOLFSSL_ASYNC_THREADS OFF"
"BUILD_SHARED_LIBS OFF"
)
target_compile_definitions(wolfssl PRIVATE NO_WOLFSSL_STUB=1)
target_compile_definitions(wolfssl PRIVATE NO_WOLFSSL_STUB=1 DEBUG_WOLFSSL_VERBOSE=1)
target_compile_definitions(WolfSSLServer PRIVATE WolfSSLServer_VERSION=0.1)


Expand Down

0 comments on commit 0fe6ca4

Please sign in to comment.