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-8.cfg

64 lines
1.5 KiB

#
# configuration for Stress testing
#
# $Id$
#
debug=3 # debug level (cmd line: -dddddddddd)
#fork=yes # (cmd. line: -D)
fork=yes
log_stderror=yes # (cmd line: -E)
#log_stderror=no # (cmd line: -E)
children=8
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
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" );
};
#if ( !rewriteFromRoute() )
#{
log( " SER : no route found!\n");
# if ( method=="INVITE" )
# {
#log ("SER : INVITE found - > adding RecordRoute!\n");
#addRecordRoute();
#};
#}
#else
#{
# log( "SER : ROUTE found! \n");
#};
t_relay();
}