[sr-dev] git:master:9721f555: Merge pull request #757 from adubovikov/master
GitHub
noreply at github.com
Fri Aug 26 12:45:14 CEST 2016
Module: kamailio
Branch: master
Commit: 9721f55598406b1fb385cc5825af3bc10ddd332f
URL: https://github.com/kamailio/kamailio/commit/9721f55598406b1fb385cc5825af3bc10ddd332f
Author: Alexandr Dubovikov <alexandr.dubovikov at gmail.com>
Committer: GitHub <noreply at github.com>
Date: 2016-08-26T12:45:08+02:00
Merge pull request #757 from adubovikov/master
modules/sipcapture: extended X-RTP-Stat types
---
Modified: modules/sipcapture/sipcapture.c
---
Diff: https://github.com/kamailio/kamailio/commit/9721f55598406b1fb385cc5825af3bc10ddd332f.diff
Patch: https://github.com/kamailio/kamailio/commit/9721f55598406b1fb385cc5825af3bc10ddd332f.patch
---
diff --git a/modules/sipcapture/sipcapture.c b/modules/sipcapture/sipcapture.c
index ddce49c..47e193c 100644
--- a/modules/sipcapture/sipcapture.c
+++ b/modules/sipcapture/sipcapture.c
@@ -1860,7 +1860,14 @@ static int sip_capture(struct sip_msg *msg, str *_table, _capture_mode_data_t *
else if((tmphdr[3] = get_hdr_by_name(msg,"RTP-RxStat", 10)) != NULL) {
sco.rtp_stat = tmphdr[3]->body;
}
-
+ /* X-RTP-Stat-Add */
+ else if((tmphdr[3] = get_hdr_by_name(msg,"X-RTP-Stat-Add", 14)) != NULL) {
+ sco.rtp_stat = tmphdr[3]->body;
+ }
+ /* X-RTP-Stat-T38 */
+ else if((tmphdr[3] = get_hdr_by_name(msg,"X-RTP-Stat-T38", 14)) != NULL) {
+ sco.rtp_stat = tmphdr[3]->body;
+ }
else { EMPTY_STR(sco.rtp_stat); }
More information about the sr-dev
mailing list