<p dir="ltr">Thanks alex! Good point</p>
<div class="gmail_quote">On Dec 19, 2013 7:05 PM, "Alex Balashov" <<a href="mailto:abalashov@evaristesys.com">abalashov@evaristesys.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
TM does not provide timers for the intervals you're seeking.<br>
<br>
If you really, really want to 'hack' this, you can use t_set_fr() to set an artificially low fr_inv_timer value and then, upon receipt of a 180/183 in an onreply_route, t_reset_fr() back to a larger, normal value.<br>

<br>
So, if you wanted to time the branch out in the event that you don't get a 180/183 within 10 seconds, for instance, you can<br>
<br>
   t_set_fr(10000);<br>
<br>
and then, in an onreply_route, catch a reply:<br>
<br>
   onreply_route[MAIN_REPLY] {<br>
      ...<br>
<br>
      if(t_check_status("180|183")) {<br>
         t_reset_fr();<br>
         return;<br>
      }<br>
<br>
      ...<br>
   }<br>
<br>
And it would have that kind of effect.<br>
<br>
But, this is an error-prone way of doing it that invites unintended consequences.  I wouldn't do it if you don't absolutely need to.<br>
<br>
-- Alex<br>
<br>
On 12/19/2013 05:03 AM, Kelvin Chua wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
just a quick question, somebody out there might have an idea:<br>
<br>
currently, we can easily control the ff:<br>
Time from INVITE to 200 OK                  ------ fr_inv_timer<br>
Time from INVITE to 100 TRYING           ------ fr_timer<br>
<br>
what i hope to achieve is:<br>
Time from Session Progress (180/183) to 200 OK<br>
Time from INVITE to Session Progress (180/183)<br>
<br>
is there any hack to do this?<br>
<br>
Kelvin Chua<br>
<br>
<br>
______________________________<u></u>_________________<br>
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list<br>
<a href="mailto:sr-users@lists.sip-router.org" target="_blank">sr-users@lists.sip-router.org</a><br>
<a href="http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users" target="_blank">http://lists.sip-router.org/<u></u>cgi-bin/mailman/listinfo/sr-<u></u>users</a><br>
<br>
</blockquote>
<br>
<br>
-- <br>
Alex Balashov - Principal<br>
Evariste Systems LLC<br>
235 E Ponce de Leon Ave<br>
Suite 106<br>
Decatur, GA 30030<br>
United States<br>
Tel: <a href="tel:%2B1-678-954-0670" value="+16789540670" target="_blank">+1-678-954-0670</a><br>
Web: <a href="http://www.evaristesys.com/" target="_blank">http://www.evaristesys.com/</a>, <a href="http://www.alexbalashov.com/" target="_blank">http://www.alexbalashov.com/</a><br>
<br>
______________________________<u></u>_________________<br>
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list<br>
<a href="mailto:sr-users@lists.sip-router.org" target="_blank">sr-users@lists.sip-router.org</a><br>
<a href="http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users" target="_blank">http://lists.sip-router.org/<u></u>cgi-bin/mailman/listinfo/sr-<u></u>users</a><br>
</blockquote></div>