Re: [SR-Users] Possible memory leak dealing with presence in kamailio

2015-01-15 Thread Daniel-Constantin Mierla
Hello, I applied the patch, with some adjustments. Now in master, to be backported to stable branches soon. Cheers, Daniel On 13/01/15 20:16, Nuno Reis wrote: Hi Kristian and Daniel. Kristian, hhanks for you feedback and patch. I'll try your patch here and will let you know the outcome

Re: [SR-Users] Changing SDP with subst after rtpproxy_answer corrupts SDP

2015-01-15 Thread Daniel Tryba
On Thursday 15 January 2015 13:38:00 Matthias van der Vlies wrote: I have an on-reply route that needs to change the SDP version for the reply coming in. The use case is that I have a mobile originated call and there is some Ericsson switch that doesn't like it when the SDP version is updated

Re: [SR-Users] Changing SDP with subst after rtpproxy_answer corrupts SDP

2015-01-15 Thread Matthias van der Vlies
That's also a solution, but I prefer not dropping the 183 :) Daniel's (the other one ;-)) suggestion was the solution in the end: if(subst(/^o=somestuff ([0-9]+) ([0-9]+) IN IP4 (.*)$/o=somestuff \1 \1 IN IP4 \3/)) { xlog(L_INFO, Fixed

[SR-Users] OMA/RCS Presence compliance

2015-01-15 Thread Osbun, Alex
Hello, Are the Kamailio presence modules (presence, xcap, pua, rls, etc.) RCS 5.X and OMA Presence Simple spec compliant. I found the following bullet from this announcement - http://www.kamailio.org/w/2012/09/kamailio-at-11-years/ * SIMPLE Presence IM extensions – embedded XCAP server,

Re: [SR-Users] Wrong dialog selected in on_reply/failure route in case of spirals.

2015-01-15 Thread Daniel-Constantin Mierla
Hello, I looked at the logs, but I cannot see the log message I added with the patch for reseting local dialog shortcuts after onreply and failure route. It shuld be something like: ... resetting the local dialog shortcuts Are you sure you are running the latest branch 4.1? You can send the

[SR-Users] REGISTER replication using t_replicate with ds_select_dst

2015-01-15 Thread Spencer Thomason
Hello all, We are moving our registration and location services to dedicated instances geographically separate from our proxies and then using redirects to locate the registered user. The idea is to protect the proxies from a potential thundering herd of registrations if there was some network

Re: [SR-Users] Using the iptel Switch for both home office environments...

2015-01-15 Thread H. KAIMARAH
Thanks Daniel, I downloaded the Switch and are in the process of installing... Will request for support in case i face challenges. Best of regards, Daniel-Constantin Mierla mailto:mico...@gmail.com Monday, January 12, 2015 2:57 PM Hello, the latest iptel's SER is now Kamailio, you can take

Re: [SR-Users] Trouble getting start time / call duration from dialog module

2015-01-15 Thread Will Ferrer
Hi Daniel Thanks so much for the response and help as always. I tried changing my config to use loose route. It looks like this now: loadmodule dialog.so ... modparam(dialog, db_url, DBURL) modparam(dialog, db_mode, 1) modparam(dialog, dlg_flag, 4) modparam(dialog, dlg_match_mode, 1) ...

[SR-Users] dialog module shared memory

2015-01-15 Thread Grant Bagdasarian
Hello, I'm using the dialog module to control the maximum number of calls allowed to be passed through. Is it possible to share the dialogs stored in memory with multiple instances of kamailio? So if both kamailio instances process calls, and the maximum is set to a global of 10, both

[SR-Users] kamailio 4.2.1 core in timer.c:877

2015-01-15 Thread 张顺通
I user rtimer module : loadmodule rtimer.so modparam(rtimer, timer, name=p_route;interval=1;mode=1;) modparam(rtimer, exec, timer=p_route;route=P_ROUTE) application will coredump in sometimes, and core file in below, what's the reason? Program terminated with signal 11, Segmentation fault. #0

Re: [SR-Users] Redirect Server Including Path/Recieved Information

2015-01-15 Thread Asgaroth
Hi All, Thanks for the responses thus far, I would be interrested in the patches mentioned when they are released for 4.2 :) In the meantime, I have another question relating to this configuration: [1] How would I apply the recieved paramaters to the contact header in the reply message, I

[SR-Users] One way audio video - Kamailio + rtpproxy ( NAT call )

2015-01-15 Thread Chirag Ajmera
Kamailio - 4.2.2 ( SIP server ) Rtpproxy - Git Compiled ( miconda patched version ) Issue: Remote NAT Call Bria Rmt Iphone SIP Extn (3G) Kamailio Server - Desktop Bria Client ( Wifi ) Audio and Video packets are sent from iPhone to desktop client .. but nothing otherway Also, being

[SR-Users] Diameter problem on Kamailio

2015-01-15 Thread Kowalski Piotr 3 - Hurt
Dear sr-users! We are facing serious problem. We built openIMS based on Kamailio. Moreover, we have RCS users registered, but some users are automatically unregistered on the openIMS core: 1) We don't know what a piece of log on S-CSCF means: /usr/sbin/kamailio[17392]: ERROR: ---

Re: [SR-Users] Fosdem 2015

2015-01-15 Thread Daniel-Constantin Mierla
Hello, I haven't made any decision for this year yet. I plan to go if the weather looks ok (easy driving) or the flight are still reasonably cheap days before the event. Also, if there are many Kamailio friends going, I will try harder to show up there. Cheers, Daniel On 14/01/15 09:00,

Re: [SR-Users] Fosdem 2015

2015-01-15 Thread DanB
I will be there this year also, if someone prepares an event. DanB. ___ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users

Re: [SR-Users] Redirect Server Including Path/Recieved Information

2015-01-15 Thread Asgaroth
I just noticed a typo, the contacts should look like this: what I end up with: [a] Contact: sip:user@192.168.1.1:12345;rinstance=ef7f216ba0d07156;transport=UDP*;received=sip:213.146.165.189:37891* what I am trying to achieve [b] Contact:

[SR-Users] Kamailio with a third party operator

2015-01-15 Thread Jyaim Jyaim
Hello all, I cannot find documentation on how to configure Kamailio to interwork with another operator's IMS Core. I think the s-cscf should be in charge of detecting a user is not known locally, in order to route requests toward other operator. Do you know where I should look to get infos on

Re: [SR-Users] Changing SDP with subst after rtpproxy_answer corrupts SDP

2015-01-15 Thread Daniel-Constantin Mierla
Hello, use msg_apply_changes() from textops modules in between the changes done to sdp. No time to check the code, so I am not sure at this moment if can be done inside the onreply_route[x], which is executed by tm, but should be possible in core reply_route - -there you can make a filter and

Re: [SR-Users] Trouble getting start time / call duration from dialog module

2015-01-15 Thread Daniel-Constantin Mierla
Hello, try to do dlg_manage() or lose_route() before accessing the dialog variables. Cheers, Daniel On 15/01/15 08:25, Will Ferrer wrote: An update on this. I tried setting my dialog module to the use the db. No db entry is ever made. My config looks like this now: loadmodule dialog.so

[SR-Users] websocket convert and forward to asterisk

2015-01-15 Thread jaflong jaflong
Hi Everyone, Does anyone have a example of the config where I can get the following to work I want Kamailio to process websocket converting wss to tcp and srtp to rtp and forward to asterisk as tcp and rtp incoming call on websocket (wss rtp/savpf) -- kamailio/rtpproxy (protocol - convert

[SR-Users] Changing SDP with subst after rtpproxy_answer corrupts SDP

2015-01-15 Thread Matthias van der Vlies
Dear all, I have an on-reply route that needs to change the SDP version for the reply coming in. The use case is that I have a mobile originated call and there is some Ericsson switch that doesn't like it when the SDP version is updated (in this case by asterisk) although nothing has changed to