hey all seems
db_cassa_raw_query does not attempt to re-connect at all.
Ive tried adding dbcassa_reconnect in the appropriate catch,
and the "Error:" section however neither work.
( causes kamailio to crash )
is there any chance someone can take a look at this and offer a suggestion
on how to make raw_query attempt a re-connect.
--
Sincerely
Jay
Pull requests are welcome, guys. We are hitting 30k rtp sessions on one of
our largest clusters. Lot of changes are coming into git repo soon to make
rtp_cluster component run smoothly under such conditions.
On Mar 16, 2015 8:56 PM, "John Mathew" <john.mathew(a)divoxmedia.com> wrote:
> Yes
>
> On Tuesday, 17 March 2015, Zheng Frank <zhengyumingapple(a)gmail.com> wrote:
>
>> Do you mean ROHC ?
>>
>> 2015-03-14 12:39 GMT+08:00 Maxim Sobolev <sobomax(a)sippysoft.com>:
>>
>>> Do you have any particular RFC in mind?
>>> On Mar 12, 2015 10:28 AM, "John Mathew" <john.mathew(a)divoxmedia.com>
>>> wrote:
>>>
>>>> Hi,
>>>>
>>>> Maxim,
>>>> Is there any plans for rtp header compression in future. I can't see
>>>> anything in the change log for 2.0.0
>>>>
>>>>
>>>> On Tuesday, 10 March 2015, Maxim Sobolev <sobomax(a)sippysoft.com> wrote:
>>>>
>>>>> Hi All,
>>>>>
>>>>> I'm happy to announce that we have released rtpproxy v2.0.0.
>>>>>
>>>>> You can review the release notes here:
>>>>> https://github.com/sippy/rtpproxy/releases/tag/v2.0.0
>>>>>
>>>>> -sobomax
>>>>>
>>>>>
>>>>
>>>> --
>>>> Sent from iPhone 6
>>>>
>>>> --
>>>> You received this message because you are subscribed to the Google
>>>> Groups "rtpproxy" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>> an email to rtpproxy+unsubscribe(a)googlegroups.com.
>>>> To post to this group, send email to rtpproxy(a)googlegroups.com.
>>>> To view this discussion on the web visit
>>>> https://groups.google.com/d/msgid/rtpproxy/CA%2BSkwpUhu9fpwmqpRFiaXsQo9_%2B…
>>>> <https://groups.google.com/d/msgid/rtpproxy/CA%2BSkwpUhu9fpwmqpRFiaXsQo9_%2B…>
>>>> .
>>>> For more options, visit https://groups.google.com/d/optout.
>>>>
>>>
>>> _______________________________________________
>>> SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list
>>> sr-users(a)lists.sip-router.org
>>> http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
>>>
>>>
>>
>
> --
> Sent from iPhone 6
>
> --
> You received this message because you are subscribed to the Google Groups
> "rtpproxy" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to rtpproxy+unsubscribe(a)googlegroups.com.
> To post to this group, send email to rtpproxy(a)googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/rtpproxy/CA%2BSkwpWvmaQnE8qM8ibb10d%3DNj9…
> <https://groups.google.com/d/msgid/rtpproxy/CA%2BSkwpWvmaQnE8qM8ibb10d%3DNj9…>
> .
> For more options, visit https://groups.google.com/d/optout.
>
Hi guys,
I am trying to find a way in which I am announced of the previous state
a dialog was in before it times out (by dialog -> default_timeout),
especially if it was DLGCB_CONFIRMED or DLGCB_CONFIRMED_NA.
Do you know if there is such a facility already implemented or I have to
change the code?
Does anyone else feel interested in such an information being available
from Kamailio?
Thank you,
Lucian Balaceanu
Hello. I thry to integrate redis for location module and first at all that
I do - dublicate location to redis.
First At all I create analog of lookup procedure that use location but from
redis. I take values from location and create branches by mannualy. All
works good but branch route create dublicate of first branch. We talk about
it already and I cnow that branch route creates first original Request and
then create branches. So my question is how to disable creation of original
URI?
My cfg part of creation branches is:
First of all I create massive of needed endpoints and then create branches
as bellow.
I create it with different сucles "while" because websockets not blocked
when creates dublicate INVITE, but some UDP endpoints can not take call
because answer to kamailio 487 reply and CANCELs call.
It works fine when I logged on with wesocket device and UNP at one time.
But when I logget with 2 UDP devices only this algorithm not worked.
Thanks for help.
$var(k)=0;
xlog("L_INFO", "request URI is $ru");
while ($var(k)<= $var(j)){
if ($(avp(device_contact)[$var(k)])=~"device"){
xlog("L_INFO", "This is a classic UDP call to endpoint");
if ($(avp(device_received)[$var(k)])==""){
xlog("L_INFO", "Received string is EMPTY");
$du="sip:"+$(avp(device_contact[$var(k)]){s.select,1,@});
}
else
{
xlog("L_INFO", "Received string is {$avp(device_received)[$var(k)]}");
$du=$(avp(device_received)[$var(k)]);
}
$var(UDP_contact)="sip:"+$(avp(device_contact[$var(k)]){s.select,1,@});
append_branch("sip:$tU@$(du{s.select,1,:})","0.3");
xlog("L_INFO","Classic Destination URI is
{$(avp(device_contact[$var(k)]){s.select,1,@})} for {$tU}}. Destination is
{$du}\n");
}
$var(k) = $var(k) + 1;
}
$var(k)=0;
xlog("L_INFO", "request URI is $ru");
while ($var(k)<=$var(j)){
if ($(avp(device_contact)[$var(k)])=~"transport=ws"){
xlog("L_INFO", "This is a classic UDP call to endpoint");
xlog("L_INFO", "Received string is {$avp(device_received)[$var(k)]}");
$du=$(avp(device_received)[$var(k)]);
append_branch("sip:$tU@$(du{s.select,1,:})","0.7");
xlog("L_INFO","Classic Destination URI is
{$(avp(device_contact[$var(k)]){s.select,1,@})} for {$tU}}. Destination is
{$du}\n");
}
$var(k) = $var(k) + 1;