Re: [SR-Users] Security in proxy

2011-06-20 Thread Anto
Hi Thinking about what to have multiple proxy according to their use would have to have different gateways for each proxy, right?. If you have the same gateway for different types of use of proxy, the gateway will have to look for so that proxy is the incoming traffic and send it. You might a

Re: [SR-Users] an IDEA

2011-06-20 Thread Vladimir Broz
Hi, I think you will need a SIP B2BUA - check SEMS - http://www.iptel.org/sems. Hope that helps, -Vlada On 06/18/2011 03:25 PM, afshin afzali wrote: Hi Guys, I need to integrate a SIP processing environment to H.248 and SS7/ ISUP links. For those communication links, OpenSS7 and Erlang/OTP ME

Re: [SR-Users] Keeping transactions in standby till future events

2011-06-20 Thread Iñaki Baz Castillo
2011/6/20 Iñaki Baz Castillo : >> "[t_supend] This function together with t_continue() can be used to implement >> asynchronous actions: t_suspend() saves the transaction, returns its >> identifiers, and t_continue() continues the SIP request processing." > > Hi Henning, which would be the differen

Re: [SR-Users] Carrierroute Compilation error Kamailio 3.1.4

2011-06-20 Thread Omar
Thank you for answer Henning Everything compiles fine until the showed error the were errors about the libconfuse which I fixed stating the path to the library, yes lib confuse is installed I am using the same one I installed for the kamailio 1.4.3. Omar On Jun 20, 2011, at 5:11 AM, Henning

[SR-Users] The 15000th development commit

2011-06-20 Thread Daniel-Constantin Mierla
Hello, I just wanted to mark the 15000th development commit in our project (counted only on GIT master branch). It happened several days ago and it was done by the same person that did the first commit, Andrei: git log --pretty=format:"%h%x09%an%x09%ad%x09%s" --reverse | head -1 512dcd9A

Re: [SR-Users] Help find out where to modify request uri

2011-06-20 Thread Simone Felici
Sorry again! I've found how to change it but I'm missing something maybe stupid. Having the new number to call into a variable $alias_number I can print it out as follow: xlog("L_ERR", "MATCH USERNAME - %$alias_number - %$user_number"); I've tried to rewrite it into the if-statement using both

Re: [SR-Users] Keeping transactions in standby till future events

2011-06-20 Thread Iñaki Baz Castillo
2011/6/20 Henning Westerholt : > as Alex already wrote, its probably not the best or correct thing to do - but > have you already looked to the tm module? It provides some asynchronous > support. From the module README: > > "[t_supend] This function together with t_continue() can be used to impleme

Re: [SR-Users] Help find out where to modify request uri

2011-06-20 Thread Simone Felici
Hi again, I've found where I can collect all infromations i need in the "INBOUND" route (called username and alias). I've saved them into two variables that I've printed out to log to confirm. Into NAT_MANGLE route I can match the uri that I should change, based on a username: if (uri=~"^si

Re: [SR-Users] Keeping transactions in standby till future events

2011-06-20 Thread Gustavo Garcia Bernardo
Thank you, that is the functionality we needed but we were looking for something to be accessible from the script. Perhaps we can build a module to export those APIs to the script, we will try it. Best regards, G. -Original Message- From: sr-users-boun...@lists.sip-router.org [mailto

Re: [SR-Users] Keeping transactions in standby till future events

2011-06-20 Thread Henning Westerholt
On Monday 20 June 2011, Alex Balashov wrote: > > "[t_supend] This function together with t_continue() can be used to > > implement asynchronous actions: t_suspend() saves the transaction, > > returns its identifiers, and t_continue() continues the SIP request > > processing." > > These are just ex

Re: [SR-Users] Keeping transactions in standby till future events

2011-06-20 Thread Alex Balashov
Hi Henning, On 06/20/2011 05:06 AM, Henning Westerholt wrote: "[t_supend] This function together with t_continue() can be used to implement asynchronous actions: t_suspend() saves the transaction, returns its identifiers, and t_continue() continues the SIP request processing." These are just

Re: [SR-Users] Carrierroute Compilation error Kamailio 3.1.4

2011-06-20 Thread Henning Westerholt
On Saturday 18 June 2011, Omar wrote: > I am Using Solaris 10 and GCC 4.2, i do have libconfuse > > everything goes fine until this error comes up. > > carrierroute.c:54: error: 'MODULE_INTERFACE_VER' undeclared here (not in a > function) carrierroute.c:87: error: expected '=', ',', ';', 'asm' or

Re: [SR-Users] Keeping transactions in standby till future events

2011-06-20 Thread Henning Westerholt
On Monday 20 June 2011, Gustavo Garcia Bernardo wrote: > Is it possible to configure sip-router to keep a transaction for an > incoming message (f.e. an INVITE) without sending a response and without > forwarding it, and then reference and complete it in the future? > > Using pseudocode this is th