diff --git a/modules/listsockets.cpp b/modules/listsockets.cpp index 8892e7fa..93bb2177 100644 --- a/modules/listsockets.cpp +++ b/modules/listsockets.cpp @@ -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;