tcpTest continued

This commit is contained in:
Wolfgang Hottgenroth 2020-11-11 18:45:16 +01:00
parent 251cf71647
commit a0b0915629
Signed by: wn
GPG Key ID: 6C1E5E531E0D5D7F

View File

@ -87,7 +87,7 @@ void tcpTestHandler(void *handle) {
res32 = recv(TCPTEST_SOCK, buf, res16);
coloredMsg(LOG_YELLOW, "tth, recv returns 0x%02x", res32);
if (res32 > 0) {
coloredMsg(LOG_YELLOW, "tth, received: %s", buf);
coloredMsg(LOG_YELLOW, "tth, received: %d, %s", res32, buf);
}
free(buf);
}