Package org.tinyradius.packet

Examples of org.tinyradius.packet.RadiusPacket.addAttribute()


      public RadiusPacket accessRequestReceived(AccessRequest accessRequest, InetSocketAddress client)
      throws RadiusException {
        System.out.println("Received Access-Request:\n" + accessRequest);
        RadiusPacket packet = super.accessRequestReceived(accessRequest, client);
        if (packet.getPacketType() == RadiusPacket.ACCESS_ACCEPT)
          packet.addAttribute("Reply-Message", "Welcome " + accessRequest.getUserName() + "!");
        if (packet == null)
          System.out.println("Ignore packet.");
        else
          System.out.println("Answer:\n" + packet);
        return 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.