mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
add lastMsgRcd to status printout
This commit is contained in:
parent
c039b92339
commit
9e05e6c2b3
1 changed files with 6 additions and 3 deletions
|
@ -1851,10 +1851,13 @@ comms_getStats( CommsCtxt* comms, XWStreamCtxt* stream )
|
||||||
stream_catString( stream, buf );
|
stream_catString( stream, buf );
|
||||||
|
|
||||||
XP_SNPRINTF( (XP_UCHAR*)buf, sizeof(buf),
|
XP_SNPRINTF( (XP_UCHAR*)buf, sizeof(buf),
|
||||||
(XP_UCHAR*)"Last message acknowledged: %d\n",
|
(XP_UCHAR*)"Last message received: %ld\n",
|
||||||
rec->lastACK);
|
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 );
|
stream_catString( stream, buf );
|
||||||
|
|
||||||
}
|
}
|
||||||
} /* comms_getStats */
|
} /* comms_getStats */
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue