#### Pre-Submission Checklist
- [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
- add support for changing the column delimeter in a hash table
- add support for changing the column null character
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3573
-- Commit Summary --
* htable add column packing features
-- File Changes --
M src/modules/htable/doc/htable.xml (9)
M src/modules/htable/doc/htable_admin.xml (37)
M src/modules/htable/ht_api.c (31)
M src/modules/htable/ht_api.h (2)
M src/modules/htable/ht_db.c (10)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3573.patchhttps://github.com/kamailio/kamailio/pull/3573.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3573
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3573(a)github.com>
After initial subscription by the SCA device, if we power off and on again, we won't get an unsubscribe notification and we are getting a new record-route with sca-subscription. In this case kamailio not updating the new record-route for the SCA Device.
<!-- 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
- [* ] 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 -->
When we initially subscribe to the SCA (Shared call appearance) device, we receive a new subscription notification. However, if we subsequently power off and then power on the SCA device, we will no longer receive an unsubscribe notification; instead, we are receiving a new subscription notification with a new record-route. In this scenario, kamailio is not updating the new record-route and sca notification is working after the device is powered on. In two different scenario this issue is occuring(1.Device power off & on 2. Device network broken).
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3569
-- Commit Summary --
* Update sca_subscribe.c
-- File Changes --
M src/modules/sca/sca_subscribe.c (4)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3569.patchhttps://github.com/kamailio/kamailio/pull/3569.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3569
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3569(a)github.com>
<!--
Kamailio Project uses GitHub Issues only for bugs in the code or feature requests. Please use this template only for bug reports.
If you have questions about using Kamailio or related to its configuration file, ask on sr-users mailing list:
* https://lists.kamailio.org/mailman3/postorius/lists/sr-users.lists.kamailio…
If you have questions about developing extensions to Kamailio or its existing C code, ask on sr-dev mailing list:
* https://lists.kamailio.org/mailman3/postorius/lists/sr-dev.lists.kamailio.o…
Please try to fill this template as much as possible for any issue. It helps the developers to troubleshoot the issue.
If there is no content to be filled in a section, the entire section can be removed.
You can delete the comments from the template sections when filling.
You can delete next line and everything above before submitting (it is a comment).
-->
I try to do
modparam("acc_json", "cdr_extra", "spx_resp=$avp(spx_resp)")
modparam("acc_json", "cdr_json_pre_encoded_prefix", "spx_resp")
do restart and get next mistakes:
modparam("acc_json", "cdr_extra", "spx_resp=$avp(spx_resp)")
modparam("acc_json", "cdr_json_pre_encoded_prefix", "spx_resp")
do restart and get next mistakes:
sep 22 14:17:15 vms-vms-spx-1 kamailio[581922]:
<!--
I am waiting normal start kamailio
-->
### Troubleshooting
it's a bug at the documentation or in the code
I see next:
https://www.kamailio.org/docs/modules/devel/modules/acc_json.html#acc.p.cdr…
But in the code I see a litle bit another
https://github.com/kamailio/kamailio/blob/5.5/src/modules/acc_json/acc_json…
Please fix it either in the code or documentation
Now it works like this:
modparam("acc_json", "cdr_extra", "spx_resp=$avp(spx_resp)")
modparam("acc_json", "cdr_pre_encoded_prefix", "spx_resp")
#### Reproduction
<!--
If the issue can be reproduced, describe how it can be done.
-->
#### Debugging Data
<!--
If you got a core dump, use gdb to extract troubleshooting data - full backtrace,
local variables and the list of the code at the issue location.
gdb /path/to/kamailio /path/to/corefile
bt full
info locals
list
If you are familiar with gdb, feel free to attach more of what you consider to
be relevant.
-->
```
(paste your debugging data here)
```
#### Log Messages
<!--
Check the syslog file and if there are relevant log messages printed by Kamailio, add them next, or attach to issue, or provide a link to download them (e.g., to a pastebin site).
-->
```
(paste your log messages here)
```
#### SIP Traffic
<!--
If the issue is exposed by processing specific SIP messages, grab them with ngrep or save in a pcap file, then add them next, or attach to issue, or provide a link to download them (e.g., to a pastebin site).
-->
```
(paste your sip traffic here)
```
### Possible Solutions
<!--
If you found a solution or workaround for the issue, describe it. Ideally, provide a pull request with a fix.
-->
### Additional Information
* **Kamailio Version** - output of `kamailio -v`
```
(paste your output here)
```
* **Operating System**:
<!--
Details about the operating system, the type: Linux (e.g.,: Debian 8.4, Ubuntu 16.04, CentOS 7.1, ...), MacOS, xBSD, Solaris, ...;
Kernel details (output of `lsb_release -a` and `uname -a`)
-->
```
(paste your output here)
```
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/3584
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/3584(a)github.com>
Module: kamailio
Branch: master
Commit: 212fb4086a1bba6779178465a85593e537a12903
URL: https://github.com/kamailio/kamailio/commit/212fb4086a1bba6779178465a85593e…
Author: �������������������� �������������������������������� <git-dpa(a)aegee.org>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-09-25T11:41:31+02:00
avp: typo assing ������ assign
---
Modified: src/modules/avp/avp.xml
---
Diff: https://github.com/kamailio/kamailio/commit/212fb4086a1bba6779178465a85593e…
Patch: https://github.com/kamailio/kamailio/commit/212fb4086a1bba6779178465a85593e…
---
diff --git a/src/modules/avp/avp.xml b/src/modules/avp/avp.xml
index 3fbbc32c4cb..8fcfda6f719 100644
--- a/src/modules/avp/avp.xml
+++ b/src/modules/avp/avp.xml
@@ -379,7 +379,7 @@
</para>
<para>
Like <serdoc:func>set_sattr</serdoc:func>, it is identical to
- assinging a string using the assignment operator and is
+ assigning a string using the assignment operator and is
deprecated.
</para>
</refsect2>
@@ -399,7 +399,7 @@
If the attribute does not yet exist, it is created.
</para>
<para>
- This function is identical to assinging an integer using the
+ This function is identical to assigning an integer using the
assignment operator and
is only kept to retain compatibility with earlier versions of SER.
It therefore is deprecated and may be removed in the future.
@@ -421,7 +421,7 @@
attribute does not yet exist, it is created.
</para>
<para>
- This function is identical to assinging a string using the
+ This function is identical to assigning a string using the
assignment operator and
is only kept to retain compatibility with earlier versions of SER.
It therefore is deprecated and may be removed in the future.
<!-- 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)
- [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
- [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 -->
- [x] PR should be backported to stable branches
- [ ] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3582
-- Commit Summary --
* acc_json: Fix parameter name in docs
-- File Changes --
M src/modules/acc_json/doc/acc_json_admin.xml (8)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3582.patchhttps://github.com/kamailio/kamailio/pull/3582.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3582
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3582(a)github.com>
Hello everybody,
we've a kamailio setup as a SIP proxy/SBC that we use to route incoming request into our system . We also need to support web browser clients, so, we properly enabled and configured the websocket module according to its module's documentation: https://www.kamailio.org/docs/modules/devel/modules/websocket.html#idm37
This solution is working fine for both TLS SIP clients and incoming websocket INVITEs but, when we try to route a SIP call from a SIP client to a registered websocket client, our SBC is unable to find the proper socket connection even if the proper IP, port and transport is received in the Request-URI or the Route header:
Received request URI looks like:
* INVITE sip:b80snduq@185.41.96.32:54510;transport=wss SIP/2.0
while the Route header looks like:
* Route: <sip:10.122.144.132:5061;transport=tls;lr;received=sip:185.41.96.32:54510%3Btransport%3Dws>
My only guess is that the transport parameter, for some reason, is not being properly parsed but I've been debugging core/forward.c with no luck as it seems that the request is not even being forwarded.
Any suggestion about what code I should look into? Is the destination IP, port and protocol usually set in the core parsing or might this be a nathelper module error?
Thank you very much in advance for your help.
BR,
Joel.