From ffacbcb36ae2e622dc3646fc95f481e18010868b Mon Sep 17 00:00:00 2001 From: ehouse Date: Sat, 19 Sep 2009 04:59:19 +0000 Subject: [PATCH] Move "For" column left. --- xwords4/relay/http.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwords4/relay/http.cpp b/xwords4/relay/http.cpp index 8d9061fbe..0f686b3e8 100644 --- a/xwords4/relay/http.cpp +++ b/xwords4/relay/http.cpp @@ -120,11 +120,11 @@ printCrefs( FILE* fil, const CrefMgrInfo* info, bool isLocal ) "Room" "ConnName" "ID" + "For" "Bytes" "Expect" "Here" "State" - "For" "Host IDs" ); if ( isLocal ) { @@ -145,20 +145,20 @@ printCrefs( FILE* fil, const CrefMgrInfo* info, bool isLocal ) "%s" /* name */ "%s" /* conn name */ "%d" /* cookie id */ + "%s" /* conntime */ "%d" /* total sent */ "%d" /* players */ "%d" /* players here */ "%s" /* State */ - "%s" /* conntime */ "%s" /* Hosts */ , crefInfo->m_cookie.c_str(), crefInfo->m_connName.c_str(), crefInfo->m_cookieID, + conntime, crefInfo->m_totalSent, crefInfo->m_nPlayersSought, crefInfo->m_nPlayersHere, stateString( crefInfo->m_curState ), - conntime, crefInfo->m_hostsIds.c_str() );