SCTP Vendor Crawlers

This module contains all vendor crawlers of SCTP implementations. Available vendor crawlers include:

SCTP_Chunk

SCTP Chunk Types [*]

SCTP_Parameter

SCTP Chunk Parameter Types []

SCTP_CauseCode

SCTP Error Cause Codes []

SCTP_PayloadProtocolIdentifier

SCTP Payload Protocol Identifiers [§]

SCTP Chunk Types

This module contains the vendor crawler for SCTP Chunk Types, which is automatically generating pcapkit.const.sctp.chunk.Chunk.

class pcapkit.vendor.sctp.chunk.Chunk[source]

Bases: Vendor

SCTP Chunk Types

FLAG: str = 'isinstance(value, int) and 0 <= value <= 255'

Value limit checker.

Link to registry.

SCTP Chunk Parameter Types

This module contains the vendor crawler for SCTP Chunk Parameter Types, which is automatically generating pcapkit.const.sctp.parameter.Parameter.

class pcapkit.vendor.sctp.parameter.Parameter[source]

Bases: Vendor

SCTP Chunk Parameter Types

FLAG: str = 'isinstance(value, int) and 0 <= value <= 65535'

Value limit checker.

Link to registry.

SCTP Error Cause Codes

This module contains the vendor crawler for SCTP Error Cause Codes, which is automatically generating pcapkit.const.sctp.cause_code.CauseCode.

class pcapkit.vendor.sctp.cause_code.CauseCode[source]

Bases: Vendor

SCTP Error Cause Codes

FLAG: str = 'isinstance(value, int) and 0 <= value <= 65535'

Value limit checker.

Link to registry.

SCTP Payload Protocol Identifiers

This module contains the vendor crawler for SCTP Payload Protocol Identifiers, which is automatically generating pcapkit.const.sctp.payload_protocol_identifier.PayloadProtocolIdentifier.

class pcapkit.vendor.sctp.payload_protocol_identifier.PayloadProtocolIdentifier[source]

Bases: Vendor

SCTP Payload Protocol Identifiers

FLAG: str = 'isinstance(value, int) and 0 <= value <= 4294967295'

Value limit checker.

Link to registry.

Footnotes