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