Module: sip-router
Branch: jason.penton/ims_ro_interface
Commit: 775926f8dbda937441ea84a1c52b79eaf0f749e8
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=775926f…
Author: Jason Penton <jason.penton(a)smilecoms.com>
Committer: Jason Penton <jason.penton(a)smilecoms.com>
Date: Tue Mar 19 15:56:09 2013 +0200
modules/ims_ro: comment typo fixed
---
modules/ims_ro/mod.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/ims_ro/mod.c b/modules/ims_ro/mod.c
index 13571d5..5235664 100644
--- a/modules/ims_ro/mod.c
+++ b/modules/ims_ro/mod.c
@@ -287,7 +287,7 @@ static int w_ro_ccr(struct sip_msg *msg, str* direction, str* charge_type, str*
}
}
-/* this is the functino called when a we need to request more funds/credit. We need to try ansd reserve more credit. If we cant we need to put a new timer to kill
+/* this is the function called when a we need to request more funds/credit. We need to try ansd reserve more credit. If we cant we need to put a new timer to kill
the call at the appropriate time */
void ro_session_ontimeout(struct ro_tl *tl) {
Module: sip-router
Branch: richard.good/diameter_rx_media
Commit: 3073bda916eb9b0b69b9acf5e16aaf4bd77eaddc
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3073bda…
Author: Richard Good <richard.good(a)smilecoms.com>
Committer: Richard Good <richard.good(a)smilecoms.com>
Date: Tue Mar 19 12:58:18 2013 +0200
ims_qos: fixed memory leak for rx calling
- Fixed memory leak on rx media calling - when AAR update is received saved_data struct was not free-ed
---
modules/ims_qos/mod.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/modules/ims_qos/mod.c b/modules/ims_qos/mod.c
index 0d197ed..46a5e9e 100644
--- a/modules/ims_qos/mod.c
+++ b/modules/ims_qos/mod.c
@@ -546,6 +546,8 @@ static int w_rx_aar(struct sip_msg *msg, char* str1, char* bar) {
LM_DBG("Attached CDP auth session [%.*s] for Rx to dialog in %s mode\n", auth_session->id.len, auth_session->id.s, direction);
} else {
LM_DBG("Update AAR session for this dialog in mode %s\n", direction);
+ if (saved_t_data)
+ free_saved_transaction_global_data(saved_t_data); //only free global data if no AARs were sent. if one was sent we have to rely on the callback (CDP) to free
create_return_code(CSCF_RETURN_TRUE);
return CSCF_RETURN_TRUE;
}
Module: sip-router
Branch: master
Commit: dd0b43e2ac06ed901f959d9e5a90312d865dedfd
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=dd0b43e…
Author: Hugh Waite <hugh.waite(a)crocodile-rcs.com>
Committer: Hugh Waite <hugh.waite(a)crocodile-rcs.com>
Date: Fri Mar 15 12:08:16 2013 +0000
Merge branch 'master' of ssh://git.sip-router.org/sip-router
* 'master' of ssh://git.sip-router.org/sip-router: (40 commits)
modules/registrar: fixed lock usage in unregister()
modules/pv: can only retrieve $ruid for a request
ims_icscf: fix include list for BSD
modules/pv: added new $ruid and $branch(ruid) PVs
modules/xprint: updated use of get_branch() and next_branch() to cope with additional argument
modules/tm: updated use of get_branch() and next_branch() to cope with additional argument
modules/pv: updated use of get_branch() and next_branch() to cope with additional argument
modules/permissions: updated use of get_branch() and next_branch() to cope with additional argument
modules/domain: updated use of get_branch() and next_branch() to cope with additional argument
core: updated use of get_branch() and next_branch() to cope with additional argument
core: updated get_branch() and next_branch() to return ruid (if set)
modules/tm: updated t_serial to store/retrieve ruid
modules/registrar: tidied up unregister() function
modules/ims_isc: updated to include new argument to append_branch()
modules/ims_icscf: updated to include new argument to append_branch()
modules/exec: updated to include new argument to append_branch()
modules/enum: updated to include new argument to append_branch()
modules/dialplan: updated to include new argument to append_branch()
modules/cpl-c: updated to include new argument to append_branch()
modules/corex: updated to include new argument to append_branch()
...
---