TcpStatsImpl
class TcpStatsImpl( val connectionsEstablished: Long, val connectionsActive: Long, val connectionsPassive: Long, val connectionFailures: Long, val connectionsReset: Long, val segmentsSent: Long, val segmentsReceived: Long, val segmentsRetransmitted: Long, val inErrors: Long, val outResets: Long) : TcpStats
TcpStatsImpl
Implementation of the TcpStats
interface, providing statistics related to TCP connections, such as the number of established connections, errors, and sent/received segments.
Author
N7ghtm4r3
Parameters
connectionsEstablished
The number of established TCP connections.
connectionsActive
The number of active (currently open) TCP connections.
connectionsPassive
The number of passive (waiting for incoming requests) TCP connections.
connectionFailures
The number of failed attempts to establish a TCP connection.
connectionsReset
The number of TCP connections that have been reset.
segmentsSent
The number of TCP segments sent.
segmentsReceived
The number of TCP segments received.
segmentsRetransmitted
The number of TCP segments that have been retransmitted.
inErrors
The number of incoming errors (e.g., malformed packets).
outResets
The number of outgoing reset signals (e.g., RST flags).