Package org.tinyradius.attribute

Examples of org.tinyradius.attribute.RadiusAttribute.readAttribute()


    pos = 0;
    while (pos < attributeData.length) {
      int attributeType = attributeData[pos] & 0x0ff;
      int attributeLength = attributeData[pos + 1] & 0x0ff;
      RadiusAttribute a = RadiusAttribute.createRadiusAttribute(dictionary, -1, attributeType);
      a.readAttribute(attributeData, pos, attributeLength);
      rp.addAttribute(a);
      pos += attributeLength;
    }
   
    // request packet?
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.