Searched defs:msb (Results 1 - 8 of 8) sorted by relevance

/forgerock/openam-v13/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/
H A DOctetUtils.java177 * @param msb the most significant byte
183 public static final byte[] toOctets(AttributeType type, int msb, int msb2, int msb3, int msb4) { argument
187 octets[2] = (byte) msb; // network byte order is big endian meaning most significant byte in lowest byte.
/forgerock/openam-v13/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/packet/
H A DFramedIPNetmaskAttribute.java58 * @param msb the most significant bit of the Framed IPX network address
63 public FramedIPNetmaskAttribute(int msb, int msb2, int msb3, int msb4) { argument
64 super(OctetUtils.toOctets(AttributeType.FRAMED_IP_NETMASK, msb, msb2, msb3, msb4));
H A DFramedIPXNetworkAttribute.java66 * @param msb the most significant bit of the Framed IPX network address
71 public FramedIPXNetworkAttribute(int msb, int msb2, int msb3, int msb4) { argument
72 super(OctetUtils.toOctets(AttributeType.FRAMED_IPX_NETWORK, msb, msb2, msb3, msb4));
H A DFramedIPAddressAttribute.java70 * @param msb the most significant byte of the network address for the specified type
75 public FramedIPAddressAttribute(Type type, int msb, int msb2, int msb3, int msb4) { argument
76 super(FramedIPAddressAttribute.toOctets(type, msb, msb2, msb3, msb4));
102 * @param msb the most significant byte of the network address for the specified type
108 private static final byte[] toOctets(Type type, int msb, int msb2, int msb3, int msb4) { argument
114 return OctetUtils.toOctets(AttributeType.FRAMED_IP_ADDRESS, msb, msb2, msb3, msb4);
/forgerock/openam/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/
H A DOctetUtils.java177 * @param msb the most significant byte
183 public static final byte[] toOctets(AttributeType type, int msb, int msb2, int msb3, int msb4) { argument
187 octets[2] = (byte) msb; // network byte order is big endian meaning most significant byte in lowest byte.
/forgerock/openam/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/packet/
H A DFramedIPNetmaskAttribute.java58 * @param msb the most significant bit of the Framed IPX network address
63 public FramedIPNetmaskAttribute(int msb, int msb2, int msb3, int msb4) { argument
64 super(OctetUtils.toOctets(AttributeType.FRAMED_IP_NETMASK, msb, msb2, msb3, msb4));
H A DFramedIPXNetworkAttribute.java66 * @param msb the most significant bit of the Framed IPX network address
71 public FramedIPXNetworkAttribute(int msb, int msb2, int msb3, int msb4) { argument
72 super(OctetUtils.toOctets(AttributeType.FRAMED_IPX_NETWORK, msb, msb2, msb3, msb4));
H A DFramedIPAddressAttribute.java70 * @param msb the most significant byte of the network address for the specified type
75 public FramedIPAddressAttribute(Type type, int msb, int msb2, int msb3, int msb4) { argument
76 super(FramedIPAddressAttribute.toOctets(type, msb, msb2, msb3, msb4));
102 * @param msb the most significant byte of the network address for the specified type
108 private static final byte[] toOctets(Type type, int msb, int msb2, int msb3, int msb4) { argument
114 return OctetUtils.toOctets(AttributeType.FRAMED_IP_ADDRESS, msb, msb2, msb3, msb4);

Completed in 54 milliseconds