Rename platform files and submodules (#374)

This updates FreeRTOS-Plus/Source/Application-Protocols/platform folder based on feedback to include separate folders for tls and plaintext. In addition, the device-shadow-for-aws-iot-embedded-c submodule is renamed to device-shadow.
This commit is contained in:
Oscar Michael Abrina 2020-11-03 11:51:02 -08:00 committed by GitHub
parent 691ed9b529
commit 25cd833fd6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
42 changed files with 218 additions and 218 deletions

View file

@ -20,7 +20,7 @@
*/
/**
* @file retry_utils_freertos.c
* @file retry_utils.c
* @brief Utility implementation of backoff logic, used for attempting retries of failed processes.
*/

View file

@ -20,7 +20,7 @@
*/
/**
* @file freertos_sockets_wrapper.c
* @file freertos_plus_tcp_sockets_wrapper.c
* @brief FreeRTOS Sockets connect and disconnect wrapper implementation.
*/
@ -30,7 +30,7 @@
/* FreeRTOS includes. */
#include "FreeRTOS.h"
#include "freertos_sockets_wrapper.h"
#include "freertos_plus_tcp_sockets_wrapper.h"
/*-----------------------------------------------------------*/

View file

@ -20,7 +20,7 @@
*/
/**
* @file freertos_sockets_wrapper.h
* @file freertos_plus_tcp_sockets_wrapper.h
* @brief FreeRTOS Sockets connect and disconnect function wrapper.
*/

View file

@ -30,10 +30,10 @@
#include "FreeRTOS_Sockets.h"
/* FreeRTOS Socket wrapper include. */
#include "freertos_sockets_wrapper.h"
#include "freertos_plus_tcp_sockets_wrapper.h"
/* Transport interface include. */
#include "plaintext_freertos.h"
#include "freertos_plus_tcp_plaintext.h"
PlaintextTransportStatus_t Plaintext_FreeRTOS_Connect( NetworkContext_t * pNetworkContext,
const char * pHostName,

View file

@ -36,10 +36,10 @@
#include "FreeRTOS_Sockets.h"
/* TLS transport header. */
#include "tls_freertos.h"
#include "freertos_plus_tcp_mbedtls.h"
/* FreeRTOS Socket wrapper include. */
#include "freertos_sockets_wrapper.h"
#include "freertos_plus_tcp_sockets_wrapper.h"
/* mbedTLS util includes. */
#include "mbedtls_error.h"

View file

@ -39,10 +39,10 @@
#include "FreeRTOS_Sockets.h"
/* TLS transport header. */
#include "tls_freertos_pkcs11.h"
#include "freertos_plus_tcp_mbedtls_pkcs11.h"
/* FreeRTOS Socket wrapper include. */
#include "freertos_sockets_wrapper.h"
#include "freertos_plus_tcp_sockets_wrapper.h"
/* mbedTLS util includes. */
#include "mbedtls_error.h"