New additions to siptrace module broke previous functionality.
If sip_trace was used with no param and destination uri was not set
then the current message would not have been traced to database. The
current fix traces always the current message if siptrace function
was called.
<!-- 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 -->
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1951
-- Commit Summary --
* siptrace: fix tracing messages to database when destination uri not set
-- File Changes --
M src/modules/siptrace/siptrace.c (4)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1951.patchhttps://github.com/kamailio/kamailio/pull/1951.diff
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/1951
Module: kamailio
Branch: master
Commit: 3ace6416387bcb487843f33bd45ec8f2344f60eb
URL: https://github.com/kamailio/kamailio/commit/3ace6416387bcb487843f33bd45ec8f…
Author: iionita <ionut-razvan.ionita(a)1and1.ro>
Committer: iionita <ionut-razvan.ionita(a)1and1.ro>
Date: 2019-05-14T11:22:22+03:00
siptrace: fix tracing messages to database when destination uri not set
New additions to siptrace module broke previous functionality.
If sip_trace was used with no param and destination uri was not set
then the current message would not have been traced to database. The
current fix traces always the current message if siptrace function
was called.
---
Modified: src/modules/siptrace/siptrace.c
---
Diff: https://github.com/kamailio/kamailio/commit/3ace6416387bcb487843f33bd45ec8f…
Patch: https://github.com/kamailio/kamailio/commit/3ace6416387bcb487843f33bd45ec8f…
---
diff --git a/src/modules/siptrace/siptrace.c b/src/modules/siptrace/siptrace.c
index fc97290285..92e2019917 100644
--- a/src/modules/siptrace/siptrace.c
+++ b/src/modules/siptrace/siptrace.c
@@ -1011,7 +1011,7 @@ static int w_sip_trace3(sip_msg_t *msg, char *dest, char *correlation_id, char *
}
}
- if(trace_is_off(msg)) {
+ if(trace_type != SIPTRACE_MESSAGE && trace_is_off(msg)) {
LM_DBG("trace off...\n");
return 1;
}
Module: kamailio
Branch: master
Commit: c836f8ba2f4d3a32b8a4fecba332355df01daca6
URL: https://github.com/kamailio/kamailio/commit/c836f8ba2f4d3a32b8a4fecba332355…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2019-05-13T15:27:08+02:00
rtpengine: allocate space for one more rtp relay control socket
- keep it as safety end place holder
- should make it work again for the case when starting with no rtp
engine in the database - GH #1940
---
Modified: src/modules/rtpengine/rtpengine.c
---
Diff: https://github.com/kamailio/kamailio/commit/c836f8ba2f4d3a32b8a4fecba332355…
Patch: https://github.com/kamailio/kamailio/commit/c836f8ba2f4d3a32b8a4fecba332355…
---
diff --git a/src/modules/rtpengine/rtpengine.c b/src/modules/rtpengine/rtpengine.c
index 21f03775d6..40844ddb2e 100644
--- a/src/modules/rtpengine/rtpengine.c
+++ b/src/modules/rtpengine/rtpengine.c
@@ -1768,12 +1768,13 @@ static int build_rtpp_socks(int lmode, int rtest) {
}
rtpp_socks_size = current_rtpp_no;
- rtpp_socks = (int*)pkg_reallocxf(rtpp_socks, sizeof(int)*(rtpp_socks_size));
+ /* allocate one more to have a safety end place holder */
+ rtpp_socks = (int*)pkg_reallocxf(rtpp_socks, sizeof(int)*(rtpp_socks_size+1));
if (!rtpp_socks) {
LM_ERR("no more pkg memory for rtpp_socks\n");
return -1;
}
- memset(rtpp_socks, -1, sizeof(int)*(rtpp_socks_size));
+ memset(rtpp_socks, -1, sizeof(int)*(rtpp_socks_size+1));
rtpe_reload_lock_get(rtpp_set_list->rset_head_lock);
_rtpe_list_vernum_local = _rtpe_list_version->vernum;