tcpTest continued
This commit is contained in:
@ -80,6 +80,16 @@ void tcpTestHandler(void *handle) {
|
|||||||
uint16_t s = getSn_RX_RSR(TCPTEST_SOCK);
|
uint16_t s = getSn_RX_RSR(TCPTEST_SOCK);
|
||||||
coloredMsg(LOG_YELLOW, "tth, getSn_RxMAX returns %d", s);
|
coloredMsg(LOG_YELLOW, "tth, getSn_RxMAX returns %d", s);
|
||||||
|
|
||||||
|
if (s > 0) {
|
||||||
|
uint8_t buf = (uint8_t*) malloc(s);
|
||||||
|
res32 = recv(TCPTEST_SOCK, buf, s);
|
||||||
|
coloredMsg(LOG_YELLOW, "tth, recv returns 0x%02x", res32);
|
||||||
|
if (res32 > 0) {
|
||||||
|
coloredMsg(LOG_YELLOW, "tth, received: %s", buf);
|
||||||
|
}
|
||||||
|
free(buf);
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 255:
|
case 255:
|
||||||
|
Reference in New Issue
Block a user