Hi! While in debug mode, after Ctrl-C server does mot exit clearly.
Problem in:
radiusd.c line 940
/*
* If we're debugging, then a CTRL-C will cause the
* server to die immediately. Use SIGTERM to shut down
* the server cleanly in that case.
*/
if (debug_flag == 0) {
signal(SIGINT, sig_fatal);
signal(SIGQUIT, sig_fatal);
}
Must be
if (debug_flag != 0) {
I think.
-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
