You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/test/th-uri-2.cfg

55 lines
1.1 KiB

#
# tm test configuration, please don't touch
# - andrei
#
# $Id$
#
#
debug=3 # debug level (cmd line: -dddddddddd)
fork=yes # (cmd. line: -D)
#fork=no
log_stderror=yes # (cmd line: -E)
#log_stderror=no # (cmd line: -E)
children=4
check_via=no # (cmd. line: -v)
dns=on # (cmd. line: -r)
rev_dns=yes # (cmd. line: -R)
#port=5070
#listen=127.0.0.1
#listen=192.168.57.33
#listen=192.168.57.72
#listen=10.0.0.179
loop_checks=0
# for more info: sip_router -h
#modules
#loadmodule "modules/print/print.so"
loadmodule "modules/tm/tm.so"
#loadmodule "modules/rr/rr.so"
loadmodule "modules/maxfwd/maxfwd.so"
route{
if ( mf_is_maxfwd_present() )
{
if ( !mf_decrement_maxfwd() )
{
log("SER : unable to decrement MAX_FORWARD!\n");
};
if ( mf_is_maxfwd_zero() )
{
log("SER: MAX FORWARD header is zero\n");
drop();
};
}else{
mf_add_maxfwd_header( "10" );
};
t_relay();
}