Hi<br>
<br>
I am trying to run Openser compiled on 64 bits on a SPARC Machine running Solaris 10.<br>
<br>
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.<br>
<br>
after several tests, I have found that the error is caused by save() function (registrar module).<br>
<br>
This is the main route my configuration file:<br>
<br>
route {<br>
if(method=="REGISTER")<br>
{<br>
if(!radius_www_authorize(""))<br>
{<br>
www_challenge("", "0");<br>
return;<br>
};<br>
<br>
if(!save("location"))<br>
{<br>
sl_reply_error();<br>
};<br>
return;<br>
<br>
}<br>
else<br>
{<br>
}<br>
}<br>
<br>
Thanks in advance for your help.<br>
<br>
Sergio G.<br>
<br>