Package org.onlab.packet.dhcp
Class Dhcp6ClientDataOption
- java.lang.Object
-
- org.onlab.packet.BasePacket
-
- org.onlab.packet.dhcp.Dhcp6Option
-
- org.onlab.packet.dhcp.Dhcp6ClientDataOption
-
- All Implemented Interfaces:
IPacket
public final class Dhcp6ClientDataOption extends Dhcp6Option
DHCPv6 Client Data Option.
-
-
Field Summary
Fields Modifier and Type Field Description static int
DEFAULT_LEN
-
Fields inherited from class org.onlab.packet.dhcp.Dhcp6Option
UNSIGNED_SHORT_MASK
-
Fields inherited from class org.onlab.packet.BasePacket
parent, payload
-
-
Constructor Summary
Constructors Constructor Description Dhcp6ClientDataOption(Dhcp6Option dhcp6Option)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Deserializer<Dhcp6Option>
deserializer()
boolean
equals(java.lang.Object obj)
short
getCode()
Gets the code of this option.byte[]
getData()
Gets the data of this option.Ip6Address
getIaAddress()
short
getLength()
Gets the length of this option.java.util.List<Dhcp6Option>
getOptions()
int
hashCode()
byte[]
serialize()
Sets all payloads parent packet if applicable, then serializes this packet and all payloads.java.lang.String
toString()
-
Methods inherited from class org.onlab.packet.dhcp.Dhcp6Option
getToStringHelper, setCode, setData, setLength
-
Methods inherited from class org.onlab.packet.BasePacket
clone, getParent, getPayload, resetChecksum, setParent, setPayload
-
-
-
-
Field Detail
-
DEFAULT_LEN
public static final int DEFAULT_LEN
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Dhcp6ClientDataOption
public Dhcp6ClientDataOption(Dhcp6Option dhcp6Option)
-
-
Method Detail
-
getCode
public short getCode()
Description copied from class:Dhcp6Option
Gets the code of this option.- Overrides:
getCode
in classDhcp6Option
- Returns:
- the code
-
getLength
public short getLength()
Description copied from class:Dhcp6Option
Gets the length of this option.- Overrides:
getLength
in classDhcp6Option
- Returns:
- the length of this option
-
getData
public byte[] getData()
Description copied from class:Dhcp6Option
Gets the data of this option.- Overrides:
getData
in classDhcp6Option
- Returns:
- the data of this option
-
getOptions
public java.util.List<Dhcp6Option> getOptions()
-
getIaAddress
public Ip6Address getIaAddress()
-
deserializer
public static Deserializer<Dhcp6Option> deserializer()
-
serialize
public byte[] serialize()
Description copied from interface:IPacket
Sets all payloads parent packet if applicable, then serializes this packet and all payloads.- Specified by:
serialize
in interfaceIPacket
- Overrides:
serialize
in classDhcp6Option
- Returns:
- a byte[] containing this packet and payloads
-
toString
public java.lang.String toString()
- Overrides:
toString
in classDhcp6Option
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classDhcp6Option
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classDhcp6Option
-
-