Fix TLS handshake failures in demos (#438)

Increase default size of FreeRTOS+TCP RX buffers in TLS demos to avoid TLS handshake failures
This commit is contained in:
Archit Aggarwal 2020-12-02 11:03:55 -08:00 committed by GitHub
parent 1db51e9996
commit eec68e8790
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 8 deletions

View file

@ -287,7 +287,7 @@ extern UBaseType_t uxRand();
/* Each TCP socket has a circular buffers for Rx and Tx, which have a fixed
* maximum size. Define the size of Rx buffer for TCP sockets. */
#define ipconfigTCP_RX_BUFFER_LENGTH ( 1000 )
#define ipconfigTCP_RX_BUFFER_LENGTH ( 5000 )
/* Define the size of Tx buffer for TCP sockets. */
#define ipconfigTCP_TX_BUFFER_LENGTH ( 1000 )