### Description
Topos still seems to break early-dialog UPDATEs in my configuration. This is on 5.6.0~rc0+bpo11.20220506004754.1 from 56-nightly which I believe includes c309122 and ceb688b. I haven't tested rc1 yet (there are no debs at this time) but there doesn't seem to be any topos-related commits since rc0 either.
### Troubleshooting
#### SIP Traffic
Attaching pcaps from a lab environment to demonstrate the problem. One with topos on (failure), one with off (success). There were no other configuration changes between these tests.
### Possible Solutions
Only turning topos off seems to resolve this for me.
### Additional Information
```
version: kamailio 5.6.0-rc0 (x86_64/linux)
flags: USE_TCP, USE_TLS, USE_SCTP, TLS_HOOKS, USE_RAW_SOCKS, DISABLE_NAGLE, USE_MCAST, DNS_IP_HACK, SHM_MMAP, PKG_MALLOC, Q_MALLOC, F_MALLOC, TLSF_MALLOC, DBG_SR_MEMORY, USE_FUTEX, FAST_LOCK-ADAPTIVE_WAIT, USE_DNS_CACHE, USE_DNS_FAILOVER, USE_NAPTR, USE_DST_BLOCKLIST, HAVE_RESOLV_RES, TLS_PTHREAD_MUTEX_SHARED
ADAPTIVE_WAIT_LOOPS 1024, MAX_RECV_BUFFER_SIZE 262144, MAX_URI_SIZE 1024, BUF_SIZE 65535, DEFAULT PKG_SIZE 8MB
poll method support: poll, epoll_lt, epoll_et, sigio_rt, select.
id: unknown
compiled with gcc 10.2.1
```
* **Operating System**:
```
Linux sbcprov0-stage-tis0-cn1 5.10.0-10-amd64 #1 SMP Debian 5.10.84-1 (2021-12-08) x86_64 GNU/Linux
```
[pcaps.tar.gz](https://github.com/kamailio/kamailio/files/8704222/pcaps.tar.…
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/3112
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/3112(a)github.com>
Module: kamailio
Branch: master
Commit: 87b698f7deca1794019f98167ba49d3e4737ba71
URL: https://github.com/kamailio/kamailio/commit/87b698f7deca1794019f98167ba49d3…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2022-06-24T16:01:17+02:00
modules: readme files regenerated - textops ... [skip ci]
---
Modified: src/modules/textops/README
Modified: src/modules/tls/README
---
Diff: https://github.com/kamailio/kamailio/commit/87b698f7deca1794019f98167ba49d3…
Patch: https://github.com/kamailio/kamailio/commit/87b698f7deca1794019f98167ba49d3…
---
diff --git a/src/modules/textops/README b/src/modules/textops/README
index fabc8e3371..c187c4c8db 100644
--- a/src/modules/textops/README
+++ b/src/modules/textops/README
@@ -157,8 +157,8 @@ Ovidiu Sas
1.43. has_body usage
1.44. is_audio_on_hold usage
1.45. is_privacy usage
- 1.46. in_list() usage
- 1.47. in_list() usage
+ 1.46. in_list usage
+ 1.47. in_list_prefix usage
1.48. cmp_str usage
1.49. cmp_str usage
1.50. starts_with usage
@@ -1239,7 +1239,7 @@ if(is_privacy("id"))
Function can be used from all kinds of routes.
- Example 1.46. in_list() usage
+ Example 1.46. in_list usage
...
$var(subject) = "fi";
$var(list) = "dk,fi,no,se";
@@ -1257,7 +1257,7 @@ if (in_list("$var(subject)", "$var(list)", ",")) {
Function can be used from all kinds of routes.
- Example 1.47. in_list() usage
+ Example 1.47. in_list_prefix usage
...
$var(subject) = "final";
$var(list) = "dk,fi,no,se";
diff --git a/src/modules/tls/README b/src/modules/tls/README
index 94c8cfc069..c9bed56ec5 100644
--- a/src/modules/tls/README
+++ b/src/modules/tls/README
@@ -250,7 +250,7 @@ Chapter 1. Admin Guide
The most important parameters to set the path to the public certificate
and private key files. You can either have them in different file or in
the same file in PEM format. The parameters for them are certificate
- and private_key. They can be given as modparam or or provided in the
+ and private_key. They can be given as modparam or provided in the
profiles of tls.cfg file.
When installing tls module of kamailio, a sample 'tls.cfg' file is
<!-- 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 -->
- [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
<!-- Fix typos in tls and textops module documentation -->
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3162
-- Commit Summary --
* textops: Fix typos
* tls: Fix typo
-- File Changes --
M src/modules/textops/doc/textops_admin.xml (4)
M src/modules/tls/doc/tls.xml (2)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3162.patchhttps://github.com/kamailio/kamailio/pull/3162.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3162
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3162(a)github.com>
Module: kamailio
Branch: master
Commit: 4570b3ebc6da35efc3cc55b1f4418446b9071688
URL: https://github.com/kamailio/kamailio/commit/4570b3ebc6da35efc3cc55b1f441844…
Author: Akash Gupta <akash(a)telnyx.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2022-06-24T15:49:50+02:00
tls: Fix typo
---
Modified: src/modules/tls/doc/tls.xml
---
Diff: https://github.com/kamailio/kamailio/commit/4570b3ebc6da35efc3cc55b1f441844…
Patch: https://github.com/kamailio/kamailio/commit/4570b3ebc6da35efc3cc55b1f441844…
---
diff --git a/src/modules/tls/doc/tls.xml b/src/modules/tls/doc/tls.xml
index e356d5bff7c..f3ff2321c78 100644
--- a/src/modules/tls/doc/tls.xml
+++ b/src/modules/tls/doc/tls.xml
@@ -84,7 +84,7 @@
The most important parameters to set the path to the public certificate and private key
files. You can either have them in different file or in the same file in PEM format.
The parameters for them are <varname>certificate</varname> and <varname>private_key</varname>.
- They can be given as modparam or or provided in the profiles of tls.cfg file.
+ They can be given as modparam or provided in the profiles of tls.cfg file.
</para>
<para>
When installing tls module of kamailio, a sample 'tls.cfg' file is deployed in the same
<!-- 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)
-
- [x] [ ] 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
<!-- Fix typos -->
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3161
-- Commit Summary --
* Fix typos
-- File Changes --
M src/modules/textops/doc/textops_admin.xml (4)
M src/modules/tls/doc/tls.xml (2)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3161.patchhttps://github.com/kamailio/kamailio/pull/3161.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3161
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3161(a)github.com>
<!-- 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 -->
- [x] Commit message has the format required by CONTRIBUTING guide
- [x] Commits are split per component (core, individual modules, libs, utils, ...)
- [x] 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 -->
- add `event_callback` KEMI param like in other modules
- expose `KSR.nats.publish`
I can fix module doc if it looks good. How to generate docs locally btw?
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3154
-- Commit Summary --
* nats: add KEMI publish function and event_callback param
-- File Changes --
M src/modules/nats/defs.h (3)
M src/modules/nats/nats_mod.c (88)
M src/modules/nats/nats_mod.h (3)
M src/modules/nats/nats_pub.c (5)
M src/modules/nats/nats_pub.h (1)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3154.patchhttps://github.com/kamailio/kamailio/pull/3154.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3154
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3154(a)github.com>