From 2d90bc4f3f703ae1922473c663afb2c6a50e6972 Mon Sep 17 00:00:00 2001 From: Ake Hedman Date: Mon, 25 May 2020 17:10:36 +0200 Subject: [PATCH] Start time added to interface list (UTC time from client item) --- src/vscp/common/tcpipsrv.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/vscp/common/tcpipsrv.cpp b/src/vscp/common/tcpipsrv.cpp index 97f0f5278..f4ed1b317 100644 --- a/src/vscp/common/tcpipsrv.cpp +++ b/src/vscp/common/tcpipsrv.cpp @@ -2388,6 +2388,8 @@ tcpipClientObj::handleClientInterface_List(void) strBuf += strGUID; strBuf += std::string(","); strBuf += pItem->m_strDeviceName; + strBuf += std::string(" | Started at "); + strBuf += pItem->m_dtutc.getISODateTime(); strBuf += std::string("\r\n"); write(strBuf);