PathStats

Statistical information about a specific network path.

struct PathStats {
  MultipathType type;
  int txKBitRate;
  int rxKBitRate;
  PathStats() : type(Unknown), txKBitRate(0), rxKBitRate(0) {}
  PathStats(MultipathType t, int tx, int rx) : type(t), txKBitRate(tx), rxKBitRate(rx) {}
};
Since:
v.4.6.0.

Attributes

type
Types of network path. See MultipathType.
txKBitRate
The transmission bitrate of the path in Kbps.
rxKBitRate
The receiving bitrate of the path in Kbps.