Module: kamailio
Branch: master
Commit: 09128940ff8027e104b49559f3f4ea9f9d5c9c02
URL: https://github.com/kamailio/kamailio/commit/09128940ff8027e104b49559f3f4ea9…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2016-09-12T10:01:32+02:00
modules: readme files regenerated - ims_qos ...
---
Modified: modules/ims_qos/README
---
Diff: https://github.com/kamailio/kamailio/commit/09128940ff8027e104b49559f3f4ea9…
Patch: https://github.com/kamailio/kamailio/commit/09128940ff8027e104b49559f3f4ea9…
---
diff --git a/modules/ims_qos/README b/modules/ims_qos/README
index 94d92cb..aa3f209 100644
--- a/modules/ims_qos/README
+++ b/modules/ims_qos/README
@@ -332,10 +332,11 @@ modparam("ims_qos", "confirmed_qosrelease_headers", "X-Reason: QoS failed\r\n")
midway during calls which causes the flow-description to no longer
match the traffic. This parameter allows the flow-description AVP to
use to the any keyword instead of certain IP:port combinations in the
- SDP. The parameter is a regex that if set replaces all IPs that do not
- match the regex with the any keyword in the flow-description AVP
+ SDP. The parameter is a regex that if set adds an extra filter for all
+ IPs that do not match the regex with the any keyword in the
+ flow-description AVP
- Default value is "", no IPs replaced
+ Default value is "", no extra filters added
Example 1.13. regex_sdp_ip_prefix_to_maintain_in_fd parameter usage
...
Module: kamailio
Branch: master
Commit: 0af6ac1ca3177d21326d9531dc9a9afb84c1a332
URL: https://github.com/kamailio/kamailio/commit/0af6ac1ca3177d21326d9531dc9a9af…
Author: Richard Good <richard.good(a)smilecoms.com>
Committer: Richard Good <richard.good(a)smilecoms.com>
Date: 2016-09-09T13:34:51+02:00
modules/ims_qos: restoring variable af_signaling_ip that was incorrectly removed
---
Modified: modules/ims_qos/mod.c
---
Diff: https://github.com/kamailio/kamailio/commit/0af6ac1ca3177d21326d9531dc9a9af…
Patch: https://github.com/kamailio/kamailio/commit/0af6ac1ca3177d21326d9531dc9a9af…
---
diff --git a/modules/ims_qos/mod.c b/modules/ims_qos/mod.c
index 48c993c..91566c8 100644
--- a/modules/ims_qos/mod.c
+++ b/modules/ims_qos/mod.c
@@ -138,6 +138,9 @@ str rx_dest_realm = str_init("ims.smilecoms.com");
/* Only used if we want to force the Rx peer usually this is configured at a stack level and the first request uses realm routing */
str rx_forced_peer = str_init("");
+/* P-CSCF IP address to generate the flows for the UE<->PCSCF signaling path */
+str af_signaling_ip = str_init("127.0.0.1");
+
/* commands wrappers and fixups */
static int w_rx_aar(struct sip_msg *msg, char *route, char* dir, char *id, int id_type);
@@ -188,6 +191,7 @@ static param_export_t params[] = {
{ "rx_dest_realm", PARAM_STR, &rx_dest_realm},
{ "rx_forced_peer", PARAM_STR, &rx_forced_peer},
{ "rx_auth_expiry", INT_PARAM, &rx_auth_expiry},
+ { "af_signaling_ip", PARAM_STR, &af_signaling_ip}, /* IP of this P-CSCF, to be used in the flow for the AF-signaling */
{ "cdp_event_latency", INT_PARAM, &cdp_event_latency}, /*flag: report slow processing of CDP callback events or not */
{ "cdp_event_threshold", INT_PARAM, &cdp_event_threshold}, /*time in ms above which we should report slow processing of CDP callback event*/
{ "cdp_event_latency_log", INT_PARAM, &cdp_event_latency_loglevel}, /*log-level to use to report slow processing of CDP callback event*/
Hai team,
I couldnt remove contact header,
i can't change my listen ip,
i can't set my timr frame
Pleas help me for proper customized sip routing for my voip termination
Regards
http://about.me/mhdyas
The Vim plugin is very nice, and its use isn't restricted to machines where Kamailio is installed, as the config file can be edited via network (e.g.: using netrw plugin).
Currently the most common approach to retrieve a Vim plugin is to clone its GitHub repo and use some plugin manager, such as [pathogen](https://github.com/tpope/vim-pathogen).
But it clearly doesn't make sense to retrieve the complete Kamailio repo only to use the vim plugin; this probably caused the creation of [duplicates](https://github.com/eloycoto/vim-ser). I actually find that duplicate first, and then noticed on its README that there is an official (and newer) version here.
Do you find acceptable to move it to a [git submodule](https://git-scm.com/book/en/v2/Git-Tools-Submodules)?
--
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/issues/763