diff options
author | Maja Gorecka-Wolniewicz <mgw@puma.uci.umk.pl> | 2011-11-22 09:52:53 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2011-12-12 11:21:53 +0100 |
commit | e581fc5e5bc3db848dcc947e0abda23aa5138989 (patch) | |
tree | df56dc65616ccffe3c056effc432eec0019e8f7f /radsecproxy.c | |
parent | c17e44da367ce2cf17c73342477387192aeab54e (diff) |
F-Ticks logging changes
Diffstat (limited to 'radsecproxy.c')
-rw-r--r-- | radsecproxy.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index 303aba4..426b65b 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -1668,7 +1668,7 @@ void replyh(struct server *server, unsigned char *buf) { } #if defined(WANT_FTICKS) - if (msg->code == RAD_Access_Accept || msg->code == RAD_Access_Reject) + if (msg->code == RAD_Access_Accept || msg->code == RAD_Access_Reject) if (options.fticks_reporting && from->conf->fticks_viscountry != NULL) fticks_log(&options, from, msg, rqout); #endif @@ -3082,6 +3082,7 @@ void getmainconfig(const char *configfile) { #endif "Rewrite", CONF_CBK, confrewrite_cb, NULL, #if defined(WANT_FTICKS) + "FTicksSyslogFacility", CONF_STR, &options.ftickssyslogfacility, "FTicksReporting", CONF_STR, &fticks_reporting_str, "FTicksMAC", CONF_STR, &fticks_mac_str, "FTicksKey", CONF_STR, &fticks_key_str, @@ -3239,8 +3240,15 @@ int radsecproxy_main(int argc, char **argv) { options.loglevel = loglevel; else if (options.loglevel) debug_set_level(options.loglevel); - if (!foreground) - debug_set_destination(options.logdestination ? options.logdestination : "x-syslog:///"); + if (!foreground) { + debug_set_destination(options.logdestination ? options.logdestination : "x-syslog:///", DEBUG_LOG); +#if defined(WANT_FTICKS) + if (options.ftickssyslogfacility) { + debug_set_destination(options.ftickssyslogfacility, FTICKS_LOG); + free(options.ftickssyslogfacility); + } +#endif + } free(options.logdestination); if (!list_first(clconfs)) |