Package org.tinyradius.packet

Examples of org.tinyradius.packet.AccountingRequest


    RadiusPacket response = rc.authenticate(ar);
    System.out.println("Packet after it was sent\n" + ar + "\n");
    System.out.println("Response\n" + response + "\n");

    // 2. Send Accounting-Request
    AccountingRequest acc = new AccountingRequest("mw", AccountingRequest.ACCT_STATUS_TYPE_START);
    acc.addAttribute("Acct-Session-Id", "1234567890");
    acc.addAttribute("NAS-Identifier", "this.is.my.nas-identifier.de");
    acc.addAttribute("NAS-Port", "0");
 
    System.out.println(acc + "\n")
    response = rc.account(acc);
    System.out.println("Response: " + response);
   
View Full Code Here

TOP

Related Classes of org.tinyradius.packet.AccountingRequest

Copyright © 2018 www.massapicom. 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.