[SR-Users] SCA fails to update appearance

2015-03-02 Thread Andreas Granig
Hi guys, Playing with SCA for the first time, I'm hittin the following issue: User pho...@domain.org is registered on two devices A and B, and device B sends SUBSCRIBE to pho...@domain.org with call-info Event. Subscription is handled properly, and my DB content is this: id: 4 su

Re: [SR-Users] WARNING: [local_timer.c:83]: _local_timer_dist_tl(): 0 expire timer added"?

2015-03-02 Thread Anthony Messina
On Monday, March 02, 2015 08:41:27 Daniel-Constantin Mierla wrote: > On 01/03/15 22:54, Anthony Messina wrote: > > On Friday, February 27, 2015 07:08:05 AM Anthony Messina wrote: > >> On Friday, February 27, 2015 11:53:22 Camille Oudot wrote: > >>> Le Sat, 21 Feb 2015 12:47:08 -0600, > >>> > >>> A

Re: [SR-Users] SCA fails to update appearance

2015-03-02 Thread Jorj Bauer
> User pho...@domain.org is registered on two devices A and B > kamcmd> sca.all_subscriptions > phone1 10.15.20.174:5100 call-info 2697 active If you're only seeing one subscription with sca.all_subscriptions, then something is amiss. > If pho...@domain.org on device A does a call, I get this i

[SR-Users] building kamailio with MongoDB

2015-03-02 Thread Tom Braarup Cuykens
I am trying to setup a Kamailio with MongoDB but the complilation fails: make include_modules="db_mongodb rtpproxy" cfg make all [...] In file included from mongodb_connection.c:24:0: mongodb_connection.h:26:20: fatal error: mongoc.h: No such file or directory compilation terminated. make[1]: *

Re: [SR-Users] WARNING: [local_timer.c:83]: _local_timer_dist_tl(): 0 expire timer added"?

2015-03-02 Thread Camille Oudot
Le Mon, 2 Mar 2015 05:15:09 -0600, Anthony Messina a écrit : > Thanks Daniel. The TCP Ops module README will probably need some > updates then. My example above is sourced from there. Hi Anthony, the AVP must be accessed in a TM callback. The example is not correct, i'll fix it. Thanks for yo

Re: [SR-Users] SCA fails to update appearance

2015-03-02 Thread Andreas Granig
Hi Jori, On 03/02/2015 02:47 PM, Jorj Bauer wrote: >> User pho...@domain.org is registered on two devices A and B > >> kamcmd> sca.all_subscriptions >> phone1 10.15.20.174:5100 call-info 2697 active I had a mixed setup in my first test with one device registering as private line and another one

Re: [SR-Users] Dialog order of operations

2015-03-02 Thread Alex Balashov
Daniel, ‎Thanks for that insight. Where exactly is the association between an initial invite and a dialog profile kept, if no dialog structure has yet been malloc'd? Is it in shared or package memory? How exactly is such an association destroyed? Is it garbage-collected, or explicitly deleted i

[SR-Users] SIREMIS error

2015-03-02 Thread Agiftel
Hi, i tried to install SIREMIS v 4.2 and i get error, already posted on internet/forum, regarding versione of PHP 5.6 What i didn't find is a solution. So my question is, I still unsupported by SIREMIS php v 5.4 and upper? Is there a solution?' Regards -- View this message in context: http:/

Re: [SR-Users] Kamailio as a SIP softphone to WebRTC/SIP-over-websockets proxy?

2015-03-02 Thread Rion Carter
Thank you, I will take a close look at that. Rion On Mon, Mar 2, 2015 at 12:51 AM, Daniel-Constantin Mierla wrote: > Hello, > > Kamailio can be used to gateway signaling from webrtc/websocket to other > transports like UDP/TCP/TLS. See websocket module for an example to start > with and search

[SR-Users] REmove Header line with tags

2015-03-02 Thread Yuriy Gorlichenko
I need to remove all header line witht tags but remove_hf() removes only Header:value All tags after ";" stay at the packet as garbage and next Header moves up As there ACK sip:12345678...@phone.provider.com SIP/2.0 Via: SIP/2.0/UDP sip.server.com:5068 ;branch=z9hG4bKcb7a.9f70ce5990dd153cd0eaa6f17

[SR-Users] TLS conversion

2015-03-02 Thread Kelvin Chua
I have 2 kamailio servers and 1 asterisk server. 1. asterisk calls kamailio1 2. kamailio1 relays INVITE to kamailio2 3. kamailio2 relays INVITE to client registered using TLS 4. client answers with 200 OK, sends to kamailio2 5. kamailio2 relays 200 OK to kamailio1 6. kamailio1 relays 200 OK to ast

[SR-Users] Route Between WebSockets without rtpengine getting into the mix

2015-03-02 Thread Don Fanning
Hello All, Prior to going down the rtpengine path for another need, calling was working fine between WSS client. Now that I've added in some pieces from caruizdiaz's config [ https://github.com/caruizdiaz/kamailio-ws/blob/master/kamailio-ws.cfg] relating to SETUP_BY_TRANSPORT, it has broken that

Re: [SR-Users] TLS conversion

2015-03-02 Thread Daniel-Constantin Mierla
Hello, doesn't the ACK have a Route header for K1 and double Route headers for K2? K1 should use the first Route of K2 for routing, not the R-URI. Cheers, Daniel On 03/03/15 05:14, Kelvin Chua wrote: > I have 2 kamailio servers and 1 asterisk server. > > 1. asterisk calls kamailio1 > 2. kamailio

Re: [SR-Users] kamailio asterisk

2015-03-02 Thread Daniel-Constantin Mierla
Hello, I pushed a fix for it -- the issue was in a LM_DBG() trying to print te address for local socket, but it was not set yet, it was affecting only when running in debug mode with debug=3. I pushed the patch to branch 4.2, so if you want the fix, then you have to install from git branch 4.2. F

Re: [SR-Users] REmove Header line with tags

2015-03-02 Thread Daniel-Constantin Mierla
Hello, remove_hf() removes the entire header, including its parameters. The issue here seems to be related to the fact that you remove Via header and the core adds rport and received parameters -- this happens due to requirements from SIP RFCs. What you need to do is to apply changes once the Vi