From 4538b99a9bb0926bf4cac7c2b7d11ab8cc4e9407 Mon Sep 17 00:00:00 2001 From: SarenaAWS <6563840+sarenameas@users.noreply.github.com> Date: Fri, 4 Dec 2020 15:09:54 -0800 Subject: [PATCH] Change all occurrences of broker to server in coreHTTP demos folder. (#445) --- .../HTTP_Mutual_Auth/DemoTasks/MutualAuthHTTPExample.c | 2 +- .../coreHTTP_Windows_Simulator/HTTP_Mutual_Auth/demo_config.h | 2 +- .../HTTP_Plaintext/DemoTasks/PlainTextHTTPExample.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Mutual_Auth/DemoTasks/MutualAuthHTTPExample.c b/FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Mutual_Auth/DemoTasks/MutualAuthHTTPExample.c index 8d3bf9915b..06c6a38265 100644 --- a/FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Mutual_Auth/DemoTasks/MutualAuthHTTPExample.c +++ b/FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Mutual_Auth/DemoTasks/MutualAuthHTTPExample.c @@ -253,7 +253,7 @@ static void prvHTTPDemoTask( void * pvParameters ) * timeout. The timeout value will be exponentially increased until either the * maximum number of attempts or the maximum timeout value is reached. The * function returns pdFAIL if the TCP connection cannot be established with - * the broker after configured number of attempts. */ + * the server after the configured number of attempts. */ xDemoStatus = connectToServerWithBackoffRetries( prvConnectToServer, &xNetworkContext ); diff --git a/FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Mutual_Auth/demo_config.h b/FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Mutual_Auth/demo_config.h index ec0b70fcbe..5cd9d35b8c 100644 --- a/FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Mutual_Auth/demo_config.h +++ b/FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Mutual_Auth/demo_config.h @@ -150,7 +150,7 @@ extern void vLoggingPrintf( const char * pcFormatString, /** * @brief An option to disable Server Name Indication. * - * @note When using a local server setup, SNI needs to be disabled for a broker + * @note When using a local server setup, SNI needs to be disabled for a server * that only has an IP address but no hostname. However, SNI should be enabled * whenever possible. */ diff --git a/FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Plaintext/DemoTasks/PlainTextHTTPExample.c b/FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Plaintext/DemoTasks/PlainTextHTTPExample.c index 4d13a78025..517e29b3c0 100644 --- a/FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Plaintext/DemoTasks/PlainTextHTTPExample.c +++ b/FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Plaintext/DemoTasks/PlainTextHTTPExample.c @@ -332,7 +332,7 @@ static void prvHTTPDemoTask( void * pvParameters ) * timeout. The timeout value will be exponentially increased until either the * maximum number of attempts or the maximum timeout value is reached. The * function returns pdFAIL if the TCP connection cannot be established with - * the broker after configured number of attempts. */ + * the server after the number of attempts. */ xDemoStatus = connectToServerWithBackoffRetries( prvConnectToServer, &xNetworkContext );