Add traffic stats to listsockets webadmin table

Table is not displaying, however. Odd.
This commit is contained in:
dgw
2014-02-10 21:52:18 +04:00
parent f244d7ab45
commit b98ae214b2
+2 -1
View File
@@ -118,7 +118,8 @@ public:
Row["SSL"] = pSocket->GetSSL() ? "Yes" : "No";
Row["Local"] = GetLocalHost(pSocket, true);
Row["Remote"] = GetRemoteHost(pSocket, true);
// TODO: Traffic stats
Row["In"] = CString::ToByteStr(pSocket->GetBytesRead());
Row["Out"] = CString::ToByteStr(pSocket->GetBytesWritten());
}
return true;