MultipathStats
Aggregates statistics of each network path in multipath transmission.
struct MultipathStats {
uint32_t lanTxBytes;
uint32_t lanRxBytes;
uint32_t wifiTxBytes;
uint32_t wifiRxBytes;
uint32_t mobileTxBytes;
uint32_t mobileRxBytes;
int activePathNum;
const PathStats* pathStats;
};
- Since
- Available since v4.6.0.
Properties
- lanTxBytes
- Total bytes sent through the LAN path.
- lanRxBytes
- Total bytes received through the LAN path.
- wifiTxBytes
- Total bytes sent through the Wi-Fi path.
- wifiRxBytes
- Total bytes received through the Wi-Fi path.
- mobileTxBytes
- Total bytes sent through the mobile network path.
- mobileRxBytes
- Total bytes received through the mobile network path.
- activePathNum
- Number of currently active transmission paths.
- pathStats
- Array of statistics for each active transmission path. See PathStats.