FreeRTOS-Kernel/FreeRTOS-Plus/Source/Application-Protocols/network_transport
TakayukiMatsuo dfdf2ddf1f
Add MQTT_Mutual_Auth_wolfSSL demo (#464)
Add a demo that shows MQTT over TLS mutual authentication connection and communication with a broken when using wolfSSL as the TLS library.
2021-02-02 17:28:43 -08:00
..
freertos_plus_tcp Add MQTT_Mutual_Auth_wolfSSL demo (#464) 2021-02-02 17:28: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.