This topic describes the following SCTP network address substructures:
The following SCTPByteSts structure contains counts of bytes sent and received. SCTPByteSts is a substructure to the SCTPGenSts, SCTPSctSapSts, and SCTPTSapSts structures.
typedef struct _sctpByteSts /* Statistics counters for bytes */
{
U32 bytesTx; /* bytes sent */
U32 bytesRx; /* bytes received */
} SCTPByteSts;
The following SCTPChunkSts structure contains counts of incoming and outgoing data chunks. SCTPChunkSts is a substructure to the SCTPGenSts, SCTPSctSapSts, and SCTPTSapSts structures.
typedef struct _sctpChunkSts /* Statistics counters for chunks */
{
U32 noInitTx; /* number INITs sent */
U32 noInitReTx; /* number INITs resent */
U32 noInitRx; /* number INITs received */
U32 noIAckTx; /* number INIT_ACKs sent */
U32 noIAckRx; /* number INIT_ACKs received */
U32 noShDwnTx; /* number SHUTDOWNs sent */
U32 noShDwnReTx; /* number SHUTDOWNs resent */
U32 noShDwnRx; /* number SHUTDOWNs received */
U32 noShDwnAckTx; /* number SHUTDOWN_ACKs sent */
U32 noShDwnAckReTx; /* number SHUTDOWN_ACKSs resent */
U32 noShDwnAckRx; /* number SHUTDOWN_ACKs received */
U32 noCookieTx; /* number COOKIEs sent */
U32 noCookieReTx; /* number COOKIEs resent */
U32 noCookieRx; /* number COOKIEs received */
U32 noCkAckTx; /* number COOKIE_ACKs sent */
U32 noCkAckRx; /* number COOKIE_ACKs received */
U32 noDataTx; /* number DATAs sent */
U32 noDataReTx; /* number DATAs resent */
U32 noDataRx; /* number DATAs received */
U32 noDAckTx; /* number SACKs sent */
U32 noDAckRx; /* number SACKs received */
U32 noShDwnCmpltTx; /* number of Shutdown completed sent */
U32 noShDwnCmpltRx; /* number of Shutdown completed sent */
} SCTPChunkSts;
The following SCTPDnsSts structure contains counts of DNS queries sent, resent, and received. SCTPDnsSts is a substructure to SCTPGenSts.
typedef struct _sctpDnsSts
{
U32 noQueryTx; /* Number of DNS Queries Txmitted */
U32 noQueryReTx; /* Number of DNS Queries ReTxmitted */
U32 noQueryRspRx; /* Number of DNS Query Responses Received */
} SCTPDnsSts;