Module: kamailio
Branch: 5.8
Commit: abedff80d532b3b9896ff46fd28e1c9a68da0702
URL: https://github.com/kamailio/kamailio/commit/abedff80d532b3b9896ff46fd28e1c9…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2024-09-04T09:46:17+02:00
modules: readme files regenerated - modules ... [skip ci]
---
Modified: src/modules/secsipid/README
---
Diff: https://github.com/kamailio/kamailio/commit/abedff80d532b3b9896ff46fd28e1c9…
Patch: https://github.com/kamailio/kamailio/commit/abedff80d532b3b9896ff46fd28e1c9…
---
diff --git a/src/modules/secsipid/README b/src/modules/secsipid/README
index 5883eaa100c..53e8e86c358 100644
--- a/src/modules/secsipid/README
+++ b/src/modules/secsipid/README
@@ -472,12 +472,9 @@ request_route {
The module needs "secsipdi_proc.so" module that depends on
"libsecsipid", which is a component of "sipsecidx" project from
https://github.com/asipto/secsipidx/. The library is implemented in Go
- language, with generated C API and library. Until the libsecsipid is
- going to be packaged in OS distributions, the secsipid_proc module can
- be compiled by copying secsipid.h libsecsipid.h and libsecsipid.a files
- in the folder of the module.
+ language, with generated C API and library.
- To generate the libsecsipid.a file, it requires to have Go language
+ To generate the libsecsipid files, it requires to have Go language
installed and its environment configured, then run the following
commands:
@@ -486,9 +483,8 @@ request_route {
export GO111MODULE=off
go get https://github.com/asipto/secsipidx
cd $GOPATH/src/github.com/asipto/secsipidx/csecsipid/
-make liba
-cp secsipid.h libsecsipid.h libsecsipid.a \
- /path/to/kamailio/src/modules/secsipid_proc/
+make all
+make install
cd /path/to/kamailio/
make include_modules="secsipid secsipid_proc ..." cfg
Module: kamailio
Branch: 5.8
Commit: 4f891e5343ba74b4ca459285438c2a064a363a60
URL: https://github.com/kamailio/kamailio/commit/4f891e5343ba74b4ca459285438c2a0…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2024-09-04T09:38:48+02:00
secsipid: docs update about libsecsipid installation
(cherry picked from commit 7abbc93d8db807077ca2afc10b026be0835f4b65)
---
Modified: src/modules/secsipid/doc/secsipid_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/4f891e5343ba74b4ca459285438c2a0…
Patch: https://github.com/kamailio/kamailio/commit/4f891e5343ba74b4ca459285438c2a0…
---
diff --git a/src/modules/secsipid/doc/secsipid_admin.xml b/src/modules/secsipid/doc/secsipid_admin.xml
index 7ea74f525a0..647afb0da93 100644
--- a/src/modules/secsipid/doc/secsipid_admin.xml
+++ b/src/modules/secsipid/doc/secsipid_admin.xml
@@ -503,13 +503,10 @@ request_route {
The module needs "secsipdi_proc.so" module that depends on "libsecsipid",
which is a component of "sipsecidx" project from
https://github.com/asipto/secsipidx/. The library is
- implemented in Go language, with generated C API and library. Until the
- libsecsipid is going to be packaged in OS distributions, the secsipid_proc
- module can be compiled by copying secsipid.h libsecsipid.h and libsecsipid.a
- files in the folder of the module.
+ implemented in Go language, with generated C API and library.
</para>
<para>
- To generate the libsecsipid.a file, it requires to have Go language
+ To generate the libsecsipid files, it requires to have Go language
installed and its environment configured, then run the following commands:
</para>
<example>
@@ -519,9 +516,8 @@ request_route {
export GO111MODULE=off
go get https://github.com/asipto/secsipidx
cd $GOPATH/src/github.com/asipto/secsipidx/csecsipid/
-make liba
-cp secsipid.h libsecsipid.h libsecsipid.a \
- /path/to/kamailio/src/modules/secsipid_proc/
+make all
+make install
cd /path/to/kamailio/
make include_modules="secsipid secsipid_proc ..." cfg
A modparam would be useful in the context of people willing to get more and more details (e.g., available providers, cyphers, ... or whatever else can be extracted from the lib). Otherwise, fine for me.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/commit/04208090638a639cdf03fafb1df161c…
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/commit/04208090638a639cdf03fafb1df161cd71f74c7e/146217938(a)github.com>
Sure, I can also output the "number" version, will add another commit. About the FIPS, other projects do it in a similar way (e.g. haproxy). But one simple change would be to have LM_INFO if FIPS is in fact enabled (this is rarely done), and DBG for FIPS mode not enabled, without the need for a new module parameter. Will change it.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/commit/04208090638a639cdf03fafb1df161c…
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/commit/04208090638a639cdf03fafb1df161cd71f74c7e/146217533(a)github.com>