add lastMsgRcd to status printout

This commit is contained in:
Andy2 2010-11-03 18:28:54 -07:00
parent c039b92339
commit 9e05e6c2b3

View file

@ -1850,11 +1850,14 @@ comms_getStats( CommsCtxt* comms, XWStreamCtxt* stream )
rec->nUniqueBytes );
stream_catString( stream, buf );
XP_SNPRINTF( (XP_UCHAR*)buf, sizeof(buf),
(XP_UCHAR*)"Last message received: %ld\n",
rec->lastMsgRcd );
stream_catString( stream, buf );
XP_SNPRINTF( (XP_UCHAR*)buf, sizeof(buf),
(XP_UCHAR*)"Last message acknowledged: %d\n",
rec->lastACK );
stream_catString( stream, buf );
}
} /* comms_getStats */
#endif