Hi
I am trying to run Openser compiled on 64 bits on a SPARC Machine running
Solaris 10.
When I create a simple configuration file for testing radius integration,
Openser starts to consume the whole memory reservation (-m parameter) and
fails with segmentation fault error.
after several tests, I have found that the error is caused by save()
function (registrar module).
This is the main route my configuration file:
route {
if(method=="REGISTER")
{
if(!radius_www_authorize(""))
{
www_challenge("", "0");
return;
};
if(!save("location"))
{
sl_reply_error();
};
return;
}
else
{
}
}
Thanks in advance for your help.
Sergio G.