Hi
I have a problem with gateways. I use this two timers:
modparam("tm", "fr_timer",15) modparam("tm", "fr_inv_timer",30)
However my problem is , when some carrier not respond at all for first 5 seconds, which timer is for that?
Regards, Taras
hi,
that is the fr_inv_timer timer.
regards, bogdan
Taras Bendik wrote:
Hi
I have a problem with gateways. I use this two timers:
modparam("tm", "fr_timer",15) modparam("tm", "fr_inv_timer",30)
However my problem is , when some carrier not respond at all for first 5 seconds, which timer is for that?
Regards, Taras
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
I wonder if openser is able to differ between
UA Proxy GW --INVITE--> -- ---INVITE---> | ---INVITE---> | | 5 sec ---INVITE---> | | -- ---INVITE--->
and UA Proxy GW --INVITE--> -- ---INVITE---> | <---100------ | | 5 sec | | --
How to differ between this scenarios? The first one should handle a failover to the next GW, the second one not.
regards klaus
Bogdan-Andrei Iancu wrote:
hi,
that is the fr_inv_timer timer.
regards, bogdan
Taras Bendik wrote:
Hi
I have a problem with gateways. I use this two timers:
modparam("tm", "fr_timer",15) modparam("tm", "fr_inv_timer",30)
However my problem is , when some carrier not respond at all for first 5 seconds, which timer is for that?
Regards, Taras
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Hi Klaus,
guess you want to make distinction between a 408 with received replies (case 2) and one without (case 1). If so, use the t_local_replied() function from tm: http://www.openser.org/docs/modules/1.1.x/tm.html#AEN458
regards, bogdan
Klaus Darilion wrote:
I wonder if openser is able to differ between
UA Proxy GW --INVITE--> -- ---INVITE---> | ---INVITE---> | | 5 sec ---INVITE---> | | -- ---INVITE--->
and UA Proxy GW --INVITE--> -- ---INVITE---> | <---100------ | | 5 sec | | --
How to differ between this scenarios? The first one should handle a failover to the next GW, the second one not.
regards klaus
Bogdan-Andrei Iancu wrote:
hi,
that is the fr_inv_timer timer.
regards, bogdan
Taras Bendik wrote:
Hi
I have a problem with gateways. I use this two timers:
modparam("tm", "fr_timer",15) modparam("tm", "fr_inv_timer",30)
However my problem is , when some carrier not respond at all for first 5 seconds, which timer is for that?
Regards, Taras
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
And how do I set the timer to 5 seconds for the first scenario, and 40 seconds for the second scenario?
regards klaus
Bogdan-Andrei Iancu wrote:
Hi Klaus,
guess you want to make distinction between a 408 with received replies (case 2) and one without (case 1). If so, use the t_local_replied() function from tm: http://www.openser.org/docs/modules/1.1.x/tm.html#AEN458
regards, bogdan
Klaus Darilion wrote:
I wonder if openser is able to differ between
UA Proxy GW --INVITE--> -- ---INVITE---> | ---INVITE---> | | 5 sec ---INVITE---> | | -- ---INVITE--->
and UA Proxy GW --INVITE--> -- ---INVITE---> | <---100------ | | 5 sec | | --
How to differ between this scenarios? The first one should handle a failover to the next GW, the second one not.
regards klaus
Bogdan-Andrei Iancu wrote:
hi,
that is the fr_inv_timer timer.
regards, bogdan
Taras Bendik wrote:
Hi
I have a problem with gateways. I use this two timers:
modparam("tm", "fr_timer",15) modparam("tm", "fr_inv_timer",30)
However my problem is , when some carrier not respond at all for first 5 seconds, which timer is for that?
Regards, Taras
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Klaus,
to be more precise: all request are set to fr_timer. Once a reply is received, for INVITE is switched to fr_inv_timer.
so you may try:
modparam("tm", "fr_timer",5) modparam("tm", "fr_inv_timer",40)
regards, bogdan
Klaus Darilion wrote:
And how do I set the timer to 5 seconds for the first scenario, and 40 seconds for the second scenario?
regards klaus
Bogdan-Andrei Iancu wrote:
Hi Klaus,
guess you want to make distinction between a 408 with received replies (case 2) and one without (case 1). If so, use the t_local_replied() function from tm: http://www.openser.org/docs/modules/1.1.x/tm.html#AEN458
regards, bogdan
Klaus Darilion wrote:
I wonder if openser is able to differ between
UA Proxy GW --INVITE--> -- ---INVITE---> | ---INVITE---> | | 5 sec ---INVITE---> | | -- ---INVITE--->
and UA Proxy GW --INVITE--> -- ---INVITE---> | <---100------ | | 5 sec | | --
How to differ between this scenarios? The first one should handle a failover to the next GW, the second one not.
regards klaus
Bogdan-Andrei Iancu wrote:
hi,
that is the fr_inv_timer timer.
regards, bogdan
Taras Bendik wrote:
Hi
I have a problem with gateways. I use this two timers:
modparam("tm", "fr_timer",15) modparam("tm", "fr_inv_timer",30)
However my problem is , when some carrier not respond at all for first 5 seconds, which timer is for that?
Regards, Taras
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Thanks!
klaus
Bogdan-Andrei Iancu wrote:
Klaus,
to be more precise: all request are set to fr_timer. Once a reply is received, for INVITE is switched to fr_inv_timer.
so you may try:
modparam("tm", "fr_timer",5) modparam("tm", "fr_inv_timer",40)
regards, bogdan
Klaus Darilion wrote:
And how do I set the timer to 5 seconds for the first scenario, and 40 seconds for the second scenario?
regards klaus
Bogdan-Andrei Iancu wrote:
Hi Klaus,
guess you want to make distinction between a 408 with received replies (case 2) and one without (case 1). If so, use the t_local_replied() function from tm: http://www.openser.org/docs/modules/1.1.x/tm.html#AEN458
regards, bogdan
Klaus Darilion wrote:
I wonder if openser is able to differ between
UA Proxy GW --INVITE--> -- ---INVITE---> | ---INVITE---> | | 5 sec ---INVITE---> | | -- ---INVITE--->
and UA Proxy GW --INVITE--> -- ---INVITE---> | <---100------ | | 5 sec | | --
How to differ between this scenarios? The first one should handle a failover to the next GW, the second one not.
regards klaus
Bogdan-Andrei Iancu wrote:
hi,
that is the fr_inv_timer timer.
regards, bogdan
Taras Bendik wrote:
Hi
I have a problem with gateways. I use this two timers:
modparam("tm", "fr_timer",15) modparam("tm", "fr_inv_timer",30)
However my problem is , when some carrier not respond at all for first 5 seconds, which timer is for that?
Regards, Taras
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users