From 425e4ef2619abeec1194936139319008412b411f Mon Sep 17 00:00:00 2001 From: Srivats P Date: Sat, 4 Mar 2023 15:31:24 +0530 Subject: [PATCH] Rename port stats names to begin with send/receive This will hopefully make it quicker and easier for the user to find the stats item of interest. --- client/portstatsmodel.h | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/client/portstatsmodel.h b/client/portstatsmodel.h index 18c60ff..2743ee0 100644 --- a/client/portstatsmodel.h +++ b/client/portstatsmodel.h @@ -79,18 +79,19 @@ typedef enum { static const QStringList PortStatName = (QStringList() << "Status" - << "Frames Sent" - << "Frames Received" - << "Bytes Sent" - << "Bytes Received" - << "Frame Send Rate (fps)" - << "Frame Receive Rate (fps)" + << "Sent Frames" + << "Received Frames" + << "Sent Bytes" + << "Received Bytes" + + << "Send Frame Rate (fps)" + << "Receive Frame Rate (fps)" #if 0 - << "Byte Send Rate (Bps)" - << "Byte Receive Rate (Bps)" + << "Send Byte Rate (Bps)" + << "Receive Byte Rate (Bps)" #endif - << "Bit Send Rate (bps)" - << "Bit Receive Rate (bps)" + << "Send Bit Rate (bps)" + << "Receive Bit Rate (bps)" #if 0 << "Frames Received (NIC)" << "Frames Sent (NIC)"