diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2013-10-23 16:58:59 +0400 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2013-10-23 17:02:45 +0400 |
commit | 40311e78601e3b6e14da2e3a464aa2614c7591d3 (patch) | |
tree | ec206146a9e3a141aac739876bc53edc8c095032 | |
parent | 7844d8e3d12e5e4c2ffbd1d1fb477970d2743696 (diff) | |
download | accel-ppp-40311e78601e3b6e14da2e3a464aa2614c7591d3.tar.gz accel-ppp-40311e78601e3b6e14da2e3a464aa2614c7591d3.zip |
radius: skip vendor specific attributes when searching session for DM/CoA
This fixes invalid assosiation vendor specific Cisco-AVPair to Username attribute which both have same id
and prevents to find sessions in some circumstances.
Signed-off-by: Dmitry Kozlov <xeb@mail.ru>
-rw-r--r-- | accel-pppd/radius/radius.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/accel-pppd/radius/radius.c b/accel-pppd/radius/radius.c index 05d2e56d..e814376b 100644 --- a/accel-pppd/radius/radius.c +++ b/accel-pppd/radius/radius.c @@ -395,6 +395,8 @@ struct radius_pd_t *rad_find_session_pack(struct rad_packet_t *pack) in_addr_t ipaddr = 0; list_for_each_entry(attr, &pack->attrs, entry) { + if (attr->vendor) + continue; switch(attr->attr->id) { case Acct_Session_Id: sessionid = attr->val.string; |