From: Ali Taher Sent: Friday, June 19, 2015 09:55 To: 'Kamailio (SER) - Users Mailing List' Reply To: Kamailio (SER) - Users Mailing List Subject: [SR-Users] Kamailio invite counter |
Hello,
I want to define a counter that increase in every invite.
I tried the below :
if (is_method("INVITE"))
{
$var(u)=$var(u)+1;
xlog("L_INFO","Counter : $var(u) " );
}
But the counter is reset to 1 randomly (even before restarting kamailio service)
How can have a proper counter that count invite messages.
Thanks
Ali