sctpinfo_t Structure

The sctpinfo_t structure is a DTrace translated version of the SCTP header.

typedef struct sctpinfo {
        uint16_t sctp_sport;              /* source port */
        uint16_t sctp_dport;              /* destination port */
        uint32_t sctp_verify;             /* verification tag */
        uint32_t sctp_checksum;           /* headers + data checksum */
        sctp_hdr_t *sctp_hdr;             /* raw SCTP header */
} sctpinfo_t;

The following table contains the members of scptrinfo_t structure:

Table 11-64 sctpinfo_t Members

Name of Member Description

sctp_sport

SCTP source port.

sctp_dport

SCTP destination port.

sctp_verify

SCTP verification tag.

sctp_checksum

Checksum of SCTP header and payload.

sctp_chunk_hdr

Pointer to SCTP chunk header.

sctp_hdr

Pointer to raw SCTP header at time of tracing.