TcpStats

interface TcpStats

TcpStats Represents statistics related to TCP connections, including the number of connections, the segments sent and received, and error counts.

Author

N7ghtm4r3

Inheritors

TcpStatsImpl

Properties

Link copied to clipboard
abstract val connectionFailures: Long

connectionFailures The number of failed attempts to establish a TCP connection.

Link copied to clipboard
abstract val connectionsActive: Long

connectionsActive The number of active (currently open) TCP connections.

Link copied to clipboard

connectionsEstablished The number of established TCP connections.

Link copied to clipboard
abstract val connectionsPassive: Long

connectionsPassive The number of passive (waiting for incoming requests) TCP connections.

Link copied to clipboard
abstract val connectionsReset: Long

connectionsReset The number of TCP connections that have been reset.

Link copied to clipboard
abstract val inErrors: Long

inErrors The number of incoming errors (e.g., malformed packets).

Link copied to clipboard
abstract val outResets: Long

outResets The number of outgoing reset signals (e.g., RST flags).

Link copied to clipboard
abstract val segmentsReceived: Long

segmentsReceived The number of TCP segments received.

Link copied to clipboard

segmentsRetransmitted The number of TCP segments that have been retransmitted.

Link copied to clipboard
abstract val segmentsSent: Long

segmentsSent The number of TCP segments sent.