Browse Source

vNext - check retrans

3.22
lazedo 10 years ago
committed by Luis Azedo
parent
commit
6d657722dc
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      kamailio/default.cfg

+ 11
- 0
kamailio/default.cfg View File

@ -229,6 +229,8 @@ modparam("permissions", "db_mode", 1)
route
{
route(SANITY_CHECK);
route(CHECK_RETRANS);
# log the basic info regarding this call
xlog("L_INFO", "$ci|start|received $pr request $rm $ou");
@ -293,6 +295,15 @@ route
route(EXTERNAL_TO_INTERNAL_RELAY);
}
route[CHECK_RETRANS]
{
# handle retransmissions
if(t_precheck_trans()) {
t_check_trans();
exit;
}
}
route[SANITY_CHECK]
{
if (!sanity_check()) {


Loading…
Cancel
Save