RADIUS: Add Filter-Id attribute
Add Filter-Id to the list of RADIUS attributes. Signed-off-by: Morten Brørup <mb@smartsharesystems.com>
This commit is contained in:
parent
06800f612f
commit
6e015cd454
2 changed files with 2 additions and 0 deletions
|
@ -176,6 +176,7 @@ static const struct radius_attr_type radius_attrs[] =
|
|||
{ RADIUS_ATTR_NAS_PORT, "NAS-Port", RADIUS_ATTR_INT32 },
|
||||
{ RADIUS_ATTR_SERVICE_TYPE, "Service-Type", RADIUS_ATTR_INT32 },
|
||||
{ RADIUS_ATTR_FRAMED_IP_ADDRESS, "Framed-IP-Address", RADIUS_ATTR_IP },
|
||||
{ RADIUS_ATTR_FILTER_ID, "Filter-Id", RADIUS_ATTR_TEXT },
|
||||
{ RADIUS_ATTR_FRAMED_MTU, "Framed-MTU", RADIUS_ATTR_INT32 },
|
||||
{ RADIUS_ATTR_REPLY_MESSAGE, "Reply-Message", RADIUS_ATTR_TEXT },
|
||||
{ RADIUS_ATTR_STATE, "State", RADIUS_ATTR_UNDIST },
|
||||
|
|
|
@ -62,6 +62,7 @@ enum { RADIUS_ATTR_USER_NAME = 1,
|
|||
RADIUS_ATTR_NAS_PORT = 5,
|
||||
RADIUS_ATTR_SERVICE_TYPE = 6,
|
||||
RADIUS_ATTR_FRAMED_IP_ADDRESS = 8,
|
||||
RADIUS_ATTR_FILTER_ID = 11,
|
||||
RADIUS_ATTR_FRAMED_MTU = 12,
|
||||
RADIUS_ATTR_REPLY_MESSAGE = 18,
|
||||
RADIUS_ATTR_STATE = 24,
|
||||
|
|
Loading…
Reference in a new issue