diff options
author | kolla <kolla> | 2009-04-03 09:50:49 +0000 |
---|---|---|
committer | kolla <kolla@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2009-04-03 09:50:49 +0000 |
commit | 4811a00e27ebd4a708caafde5a04dba848325cd1 (patch) | |
tree | f7300bbd48da0484ad920faf84eef8a39027f443 /radsecproxy.c | |
parent | 431f10f3a0101479e1de1776e51cf9b2859e86f9 (diff) |
Individual messages per msg type
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@499 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'radsecproxy.c')
-rw-r--r-- | radsecproxy.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index 28ee2e0..2ec1f36 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -1676,9 +1676,13 @@ void replyh(struct server *server, unsigned char *buf) { if (ttlres == -1 && (options.addttl || from->conf->addttl)) addttlattr(msg, options.ttlattrtype, from->conf->addttl ? from->conf->addttl : options.addttl); - if (msg->code == RAD_Access_Accept || msg->code == RAD_Access_Reject || msg->code == RAD_Accounting_Response) - debug(DBG_WARN, "replyh: passing reply to client %s (%s)", from->conf->name, addr2string(from->addr)); - else + if (msg->code == RAD_Access_Accept) + debug(DBG_WARN, "replyh: passing Access_Accept to client %s (%s)", from->conf->name, addr2string(from->addr)); + else if (msg->code == RAD_Access_Reject) + debug(DBG_WARN, "replyh: passing Access_Reject to client %s (%s)", from->conf->name, addr2string(from->addr)); + else if (msg->code == RAD_Accounting_Response) + debug(DBG_WARN, "replyh: passing Accounting_Response to client %s (%s)", from->conf->name, addr2string(from->addr)); + else debug(DBG_INFO, "replyh: passing reply to client %s (%s)", from->conf->name, addr2string(from->addr)); radmsg_free(rqout->rq->msg); |