changes in modules after clang-format execution.
This is a test to check the pull-request check of clang-format
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3459
-- Commit Summary --
* auth: clang-format for coherent indentation and coding style
-- File Changes --
M src/modules/auth/api.c (156)
M src/modules/auth/api.h (128)
M src/modules/auth/auth_mod.c (623)
M src/modules/auth/auth_mod.h (13)
M src/…
[View More]modules/auth/challenge.c (176)
M src/modules/auth/challenge.h (16)
M src/modules/auth/nc.c (152)
M src/modules/auth/nc.h (24)
M src/modules/auth/nid.c (43)
M src/modules/auth/nid.h (19)
M src/modules/auth/nonce.c (193)
M src/modules/auth/nonce.h (87)
M src/modules/auth/ot_nonce.c (142)
M src/modules/auth/ot_nonce.h (21)
M src/modules/auth/rfc2617.c (38)
M src/modules/auth/rfc2617.h (77)
M src/modules/auth/rfc2617_sha256.c (38)
M src/modules/auth/rfc2617_sha256.h (32)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3459.patchhttps://github.com/kamailio/kamailio/pull/3459.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3459
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3459(a)github.com>
[View Less]
Module: kamailio
Branch: 5.7
Commit: c5a22a4bfc9310f41facf8dfe8aa9c610f432817
URL: https://github.com/kamailio/kamailio/commit/c5a22a4bfc9310f41facf8dfe8aa9c6…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-05-17T11:29:20+02:00
Makefile.defs: set LIBSSL_SET_MUTEX_SHARED by default to 1
- one can set LIBSSL_SET_MUTEX_SHARED=0 in make command line to switch
to detection mode if it is need to set it or …
[View More]not based on libssl
version
- GH #3458, GH #3384
(cherry picked from commit 5e0fb402a7755ea22c41c0b8fcefbdf9694442b8)
---
Modified: src/Makefile.defs
---
Diff: https://github.com/kamailio/kamailio/commit/c5a22a4bfc9310f41facf8dfe8aa9c6…
Patch: https://github.com/kamailio/kamailio/commit/c5a22a4bfc9310f41facf8dfe8aa9c6…
---
diff --git a/src/Makefile.defs b/src/Makefile.defs
index bd15e29269d..78a2dcc87ec 100644
--- a/src/Makefile.defs
+++ b/src/Makefile.defs
@@ -181,7 +181,7 @@ LD_EXTRA_OPTS ?=
# enable workaround for libssl 1.1+ to set shared mutex attribute
-LIBSSL_SET_MUTEX_SHARED ?=
+LIBSSL_SET_MUTEX_SHARED ?= 1
ifneq ($(LIBSSL_SET_MUTEX_SHARED), 1)
ifeq ($(CROSS_COMPILE),)
[View Less]