DRTEK / dotnet-radius-client-library

Automatically exported from code.google.com/p/dotnet-radius-client-library
0 stars 0 forks source link

VSA logic incomplete #3

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I've fleshed out the VSA parsing and will share those modified files here.

The result is that VSA attribute replies in reply are exposed via properties

foreach ($attrib in $response.Packet.Attributes)
{
    if ($attrib.AttributeType -eq [Ais.Net.Radius.Attributes.AttributeType]::VendorSpecific)
    {
        "VenType  " + $attrib.VendorType
        "VenID    " + $attrib.VendorId
        "rfc      " + $attrib.AttributeSpecific
        " - "
    }
}

Original issue reported on code.google.com by hugh.kel...@gmail.com on 21 Oct 2014 at 12:06

Attachments:

GoogleCodeExporter commented 8 years ago
Also including Attribute.cs.

Original comment by hugh.kel...@gmail.com on 21 Oct 2014 at 12:10

Attachments: