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).

See also

Constructors

Link copied to clipboard
constructor(    connectionsEstablished: Long,     connectionsActive: Long,     connectionsPassive: Long,     connectionFailures: Long,     connectionsReset: Long,     segmentsSent: Long,     segmentsReceived: Long,     segmentsRetransmitted: Long,     inErrors: Long,     outResets: Long)

Properties

Link copied to clipboard
open override val connectionFailures: Long
Link copied to clipboard
open override val connectionsActive: Long
Link copied to clipboard
open override val connectionsEstablished: Long
Link copied to clipboard
open override val connectionsPassive: Long
Link copied to clipboard
open override val connectionsReset: Long
Link copied to clipboard
open override val inErrors: Long
Link copied to clipboard
open override val outResets: Long
Link copied to clipboard
open override val segmentsReceived: Long
Link copied to clipboard
open override val segmentsRetransmitted: Long
Link copied to clipboard
open override val segmentsSent: Long