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 source port. |
|
|
SCTP destination port. |
|
|
SCTP verification tag. |
|
|
Checksum of SCTP header and payload. |
|
|
Pointer to SCTP chunk header. |
|
|
Pointer to raw SCTP header at time of tracing. |