help-gnu-radius
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Help-gnu-radius] Help with Cisco AVPair Attributes


From: Sergey Poznyakoff
Subject: Re: [Help-gnu-radius] Help with Cisco AVPair Attributes
Date: Fri, 29 Oct 2004 15:32:58 +0300

Hi Mikel,

Sorry it took me so long to reply.

> I've got accounting data coming into my RADIUS from a bunch of Cisco 1200AP
> Wireless access points. I'm trying to re-write Cisco-AVPair attributes, but
> I can't seem to get it working properly.
[...]
> What am I missing here?

You are doing everything right, except that there is a bug in your function
parse_cisco_avpair():

> integer
> parse_cisco_avpair()
> {
>         integer i;
>         while (*%[Cisco-AVPair](i))

The variable `i' is not initialized, so it is unpredictable what value it
will have at the entry to the loop. The correct beginning of the
function will be:

integer
parse_cisco_avpair()
{
        integer i;
        i = 0;
        while (*%[Cisco-AVPair](i))
        ...

Regards,
Sergey
        





reply via email to

[Prev in Thread] Current Thread [Next in Thread]