パッケージ org.pcap4j.packet
インタフェース IpV6ExtOptionsPacket.IpV6Option
-
- すべてのスーパーインタフェース:
Serializable
- 既知の実装クラスのリスト:
IllegalIpV6Option
,IpV6Pad1Option
,IpV6PadNOption
,UnknownIpV6Option
- 含まれているクラス:
- IpV6ExtOptionsPacket
public static interface IpV6ExtOptionsPacket.IpV6Option extends Serializable
The interface representing an IPv6 option. If you usePropertiesBasedPacketFactory
, classes which implement this interface must implement the following method:public static IpV6Option newInstance(byte[] rawData, int offset, int length) throws IllegalRawDataException
- 導入されたバージョン:
- pcap4j 0.9.11
- 作成者:
- Kaito Yamada
-
-
メソッドの概要
すべてのメソッド インスタンス・メソッド abstractメソッド 修飾子とタイプ メソッド 説明 byte[]
getRawData()
IpV6OptionType
getType()
int
length()
-
-
-
メソッドの詳細
-
getType
IpV6OptionType getType()
- 戻り値:
- type
-
length
int length()
- 戻り値:
- length
-
getRawData
byte[] getRawData()
- 戻り値:
- raw data
-
-