Anonymous - 2004-02-05

From radrespond function.

dospawn = 0;
if (dospawn)
   rad_spawn_child(authreq, activefd, fun, rsocket, wsocket);
else {
   (*fun)(authreq, activefd, rsocket, wsocket);
}

That's mean radiusd-acct won't do spawn, anyone know why it act like this?
Is it possible to run the accounting respond in fork mode, any pitfall?

Radius accounting request is 2 times more than authentication request, why we still run it in single process?