FreeRTOS-Kernel/FreeRTOS-Plus/Source/Application-Protocols/network_transport
ActoryOu 9b27a5de4e
Return error if invalid input detected in transport layer (Send/Recv) (#773)
* return error if invalid input detected in transport layer
2022-01-11 11:08:43 +08:00
..
sockets_wrapper Apply release changes to main branch (#759) 2021-12-23 10:16:27 -08:00
using_mbedtls Return error if invalid input detected in transport layer (Send/Recv) (#773) 2022-01-11 11:08:43 +08:00
using_mbedtls_pkcs11 Return error if invalid input detected in transport layer (Send/Recv) (#773) 2022-01-11 11:08:43 +08:00
using_plaintext Return error if invalid input detected in transport layer (Send/Recv) (#773) 2022-01-11 11:08:43 +08:00
using_wolfSSL Return error if invalid input detected in transport layer (Send/Recv) (#773) 2022-01-11 11:08:43 +08:00
readme.txt Restructure platform directory (#382) 2020-11-05 16:47:43 -08:00

Building a network transport implementation:

1. Go into the sub directory for the TCP/IP stack you are using (e.g. freertos_plus_tcp).
2. Build the wrapper file located in the directory (i.e. sockets_wrapper.c).
3. Select an additional folder based on the TLS stack you are using (e.g. using_mbedtls), or the using_plaintext folder if not using TLS.
4. Build and include all files from the selected folder.