Class RadiusPacket

java.lang.Object
ru.bitel.bgbilling.kernel.network.radius.RadiusAttributeSet
ru.bitel.bgbilling.kernel.network.radius.RadiusPacket
All Implemented Interfaces:
Cloneable

public class RadiusPacket extends RadiusAttributeSet
Радиус пакет. Этот класс расширяет набор атрибутов RadiusAttributeSet.
  • Field Details

    • ACCESS_REQUEST

      public static final byte ACCESS_REQUEST
      See Also:
    • ACCESS_ACCEPT

      public static final byte ACCESS_ACCEPT
      See Also:
    • ACCESS_REJECT

      public static final byte ACCESS_REJECT
      See Also:
    • ACCOUNTING_REQUEST

      public static final byte ACCOUNTING_REQUEST
      See Also:
    • ACCOUNTING_RESPONSE

      public static final byte ACCOUNTING_RESPONSE
      See Also:
    • ACCOUNTING_STATUS

      public static final byte ACCOUNTING_STATUS
      See Also:
    • PASSWORD_REQUEST

      public static final byte PASSWORD_REQUEST
      See Also:
    • PASSWORD_ACCEPT

      public static final byte PASSWORD_ACCEPT
      See Also:
    • PASSWORD_REJECT

      public static final byte PASSWORD_REJECT
      See Also:
    • ACCOUNTING_MESSAGE

      public static final byte ACCOUNTING_MESSAGE
      See Also:
    • ACCESS_CHALLENGE

      public static final byte ACCESS_CHALLENGE
      See Also:
    • STATUS_SERVER

      public static final byte STATUS_SERVER
      See Also:
    • STATUS_CLIENT

      public static final byte STATUS_CLIENT
      See Also:
    • DISCONNECT_REQUEST

      public static final byte DISCONNECT_REQUEST
      See Also:
    • DISCONNECT_ACK

      public static final byte DISCONNECT_ACK
      See Also:
    • DISCONNECT_NAK

      public static final byte DISCONNECT_NAK
      See Also:
    • CoA_REQUEST

      public static final byte CoA_REQUEST
      See Also:
    • CoA_ACK

      public static final byte CoA_ACK
      See Also:
    • CoA_NAK

      public static final byte CoA_NAK
      See Also:
    • ACCOUNTING_STATUS_START

      public static final byte ACCOUNTING_STATUS_START
      See Also:
    • ACCOUNTING_STATUS_STOP

      public static final byte ACCOUNTING_STATUS_STOP
      See Also:
    • ACCOUNTING_STATUS_UPDATE

      public static final byte ACCOUNTING_STATUS_UPDATE
      See Also:
    • identifier

      public final byte identifier
      Идентификатор пакета.
    • requestAuthenticator

      protected final byte[] requestAuthenticator
      Для создаваемого ответа - это authenticator запроса.
    • authenticator

      protected byte[] authenticator
      Для пришедшего запроса это authenticator который хранится в запросе,
      для создаваемого запроса - null.
    • messageAuthenticator

      protected final byte[] messageAuthenticator
      Атрибут для подписи пакета RadiusDictionary.Message_Authenticator.
      Используется в EAP.
  • Constructor Details

    • RadiusPacket

      protected RadiusPacket(byte code, byte identifier, byte[] requestAuthenticator, byte[] authenticator, byte[] messageAuthenticator, Map<Integer,List<RadiusAttribute<?>>> standartAttributes, Map<Integer,Map<Integer,List<RadiusAttribute<?>>>> vendorAttributes, Map<String,Object> optionMap)
    • RadiusPacket

      public RadiusPacket(byte code, byte identifier)
      Создание радиус пакета (запрос).
      Parameters:
      code - - тип пакета (например, 0x28)
      identifier - - идентификатор пакета.
  • Method Details