- Inform that the order of the parameters is important when httpcon is loaded first
#### Pre-Submission Checklist
<!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply -->
<!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above-->
<!-- If you're unsure about any of these, don't hesitate to ask on sr-dev mailing list -->
- [x] Commit message has the format required by CONTRIBUTING guide
- [x] Commits are split per component (core, individual modules, libs, utils, ...)
- [ ] Each component has a single commit (if not, squash them into one commit)
- [ ] No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [ ] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
<!-- Go over all points below, and after creating the PR, tick the checkboxes that apply -->
- [ ] PR should be backported to stable branches
- [ ] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
<!-- Describe your changes in detail -->
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3619
-- Commit Summary --
* http_client: add information about parameter loading
-- File Changes --
M src/modules/http_client/doc/http_client_admin.xml (7)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3619.patchhttps://github.com/kamailio/kamailio/pull/3619.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3619
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3619(a)github.com>
Hi,
I was able to test the PLMN 00101 for VoLTE, but unable to test it with other PLMNs. I am specifically looking to have a successful test with PLMN31501. VoLTE is not enabling once I configure it.
I followed this https://open5gs.org/open5gs/docs/tutorial/02-VoLTE-setup/
Any one has experience for PLMN 315?
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/3624
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/3624(a)github.com>
Module: kamailio
Branch: master
Commit: 7e7aec0a8db7538a30ab7b932ad2fc0b401521b1
URL: https://github.com/kamailio/kamailio/commit/7e7aec0a8db7538a30ab7b932ad2fc0…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2023-10-31T20:17:18+01:00
modules: readme files regenerated - tls ... [skip ci]
---
Modified: src/modules/tls/README
---
Diff: https://github.com/kamailio/kamailio/commit/7e7aec0a8db7538a30ab7b932ad2fc0…
Patch: https://github.com/kamailio/kamailio/commit/7e7aec0a8db7538a30ab7b932ad2fc0…
---
diff --git a/src/modules/tls/README b/src/modules/tls/README
index 7ae3945db77..78af3bdcc77 100644
--- a/src/modules/tls/README
+++ b/src/modules/tls/README
@@ -247,6 +247,10 @@ Chapter 1. Admin Guide
memory. For example, such case has been reported for Ubuntu 20.04 or
RedHat 8.
+ Note: with some particular combination of OS, openssl and mysql-client
+ libraries, there were reports of random crashes, in such case try to
+ set the db_mysql module parameter opt_ssl_mode to 1.
+
2. Quick Start
The default kamailio.cfg file has basic tls support included, it has to
Module: kamailio
Branch: master
Commit: d157aed3fc69d3584cb9e6ca0112e47ab917e88e
URL: https://github.com/kamailio/kamailio/commit/d157aed3fc69d3584cb9e6ca0112e47…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-10-31T20:04:34+01:00
tls: note about db_mysql module parameter opt_ssl_mode
---
Modified: src/modules/tls/doc/tls.xml
---
Diff: https://github.com/kamailio/kamailio/commit/d157aed3fc69d3584cb9e6ca0112e47…
Patch: https://github.com/kamailio/kamailio/commit/d157aed3fc69d3584cb9e6ca0112e47…
---
diff --git a/src/modules/tls/doc/tls.xml b/src/modules/tls/doc/tls.xml
index 7972c2cced1..707983c1d00 100644
--- a/src/modules/tls/doc/tls.xml
+++ b/src/modules/tls/doc/tls.xml
@@ -73,6 +73,11 @@
to crashes because it destroys and then accesses shared memory. For
example, such case has been reported for Ubuntu 20.04 or RedHat 8.
</para>
+ <para>
+ Note: with some particular combination of OS, openssl and mysql-client
+ libraries, there were reports of random crashes, in such case try to set
+ the db_mysql module parameter opt_ssl_mode to 1.
+ </para>
</section>
<section id="tls.quick_start">
<title>Quick Start</title>
<!-- Kamailio Pull Request Template -->
<!--
IMPORTANT:
- for detailed contributing guidelines, read:
https://github.com/kamailio/kamailio/blob/master/.github/CONTRIBUTING.md
- pull requests must be done to master branch, unless they are backports
of fixes from master branch to a stable branch
- backports to stable branches must be done with 'git cherry-pick -x ...'
- code is contributed under BSD for core and main components (tm, sl, auth, tls)
- code is contributed GPLv2 or a compatible license for the other components
- GPL code is contributed with OpenSSL licensing exception
-->
#### Pre-Submission Checklist
<!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply -->
<!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above-->
<!-- If you're unsure about any of these, don't hesitate to ask on sr-dev mailing list -->
- [ ] Commit message has the format required by CONTRIBUTING guide
- [ ] Commits are split per component (core, individual modules, libs, utils, ...)
- [ ] Each component has a single commit (if not, squash them into one commit)
- [ ] No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [x] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
<!-- Go over all points below, and after creating the PR, tick the checkboxes that apply -->
- [ ] PR should be backported to stable branches
- [x] Tested changes locally
#### Description
Nightly builds broke due to https://github.com/kamailio/kamailio/commit/c8d56ed3afa19c29279e54fffd40b98…https://kamailio.sipwise.com/job/kamailiodev-nightly-binaries/2517/console
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3623
-- Commit Summary --
* secsipid: fix build errors for older verions of secsipid lib
-- File Changes --
M src/modules/secsipid/secsipid_mod.c (6)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3623.patchhttps://github.com/kamailio/kamailio/pull/3623.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3623
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3623(a)github.com>