summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSarenaAWS <6563840+sarenameas@users.noreply.github.com>2020-12-04 15:09:54 -0800
committerGitHub <noreply@github.com>2020-12-04 15:09:54 -0800
commit4538b99a9bb0926bf4cac7c2b7d11ab8cc4e9407 (patch)
treef02bd137f7b7caa22ccf2d4903e18813ccd83952
parent46acf2863a97a69839586b18d3ecddd3a803a0f8 (diff)
downloadfreertos-git-4538b99a9bb0926bf4cac7c2b7d11ab8cc4e9407.tar.gz
Change all occurrences of broker to server in coreHTTP demos folder. (#445)
-rw-r--r--FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Mutual_Auth/DemoTasks/MutualAuthHTTPExample.c2
-rw-r--r--FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Mutual_Auth/demo_config.h2
-rw-r--r--FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/HTTP_Plaintext/DemoTasks/PlainTextHTTPExample.c2
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 8d3bf9915..06c6a3826 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 ec0b70fcb..5cd9d35b8 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 4d13a7802..517e29b3c 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 );