Browse Source

vNext - check retrans

4.0
lazedo 10 years ago
parent
commit
8b4fc01f5d
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      kamailio/default.cfg

+ 11
- 0
kamailio/default.cfg View File

@ -255,6 +255,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");
@ -327,6 +329,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