ConnectionStats

data class ConnectionStats(var udpTxDatagrams: Long, var udpTxBytes: Long, var udpRxDatagrams: Long, var udpRxBytes: Long, var lostPackets: Long, var lostBytes: Long)

Flat snapshot of the headline numbers from noq::ConnectionStats.

Counters are i64 (not u64) so Kotlin sees Long, not ULong.

Constructors

Link copied to clipboard
constructor(udpTxDatagrams: Long, udpTxBytes: Long, udpRxDatagrams: Long, udpRxBytes: Long, lostPackets: Long, lostBytes: Long)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Total bytes considered lost.

Link copied to clipboard

Total packets considered lost.

Link copied to clipboard

Total UDP bytes received.

Link copied to clipboard

Total UDP datagrams received.

Link copied to clipboard

Total UDP bytes transmitted.

Link copied to clipboard

Total UDP datagrams transmitted.