Skip to content

Commit b473b03

Browse files
Andres Amaya GarciaAndres Amaya Garcia
authored andcommitted
tls-client: Update code to use new Arm branding
1 parent 0962044 commit b473b03

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

tls-client/HelloHttpsClient.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Hello world example of a TLS client: fetch an HTTPS page
33
*
4-
* Copyright (C) 2006-2017, ARM Limited, All Rights Reserved
4+
* Copyright (C) 2006-2017, Arm Limited, All Rights Reserved
55
* SPDX-License-Identifier: Apache-2.0
66
*
77
* Licensed under the Apache License, Version 2.0 (the "License"); you may
@@ -16,7 +16,7 @@
1616
* See the License for the specific language governing permissions and
1717
* limitations under the License.
1818
*
19-
* This file is part of mbed TLS (https://tls.mbed.org)
19+
* This file is part of Mbed TLS (https://tls.mbed.org)
2020
*/
2121

2222
#include "HelloHttpsClient.h"
@@ -35,7 +35,7 @@
3535
#include <string.h>
3636

3737
const char *HelloHttpsClient::DRBG_PERSONALIZED_STR =
38-
"mbed TLS helloword client";
38+
"Mbed TLS helloword client";
3939

4040
const size_t HelloHttpsClient::ERROR_LOG_BUFFER_LENGTH = 128;
4141

@@ -104,7 +104,7 @@ int HelloHttpsClient::run()
104104
if ((ret = configureTCPSocket()) != 0)
105105
return ret;
106106

107-
/* Configure already initialized mbed TLS structures */
107+
/* Configure already initialized Mbed TLS structures */
108108
if ((ret = configureTlsContexts()) != 0)
109109
return ret;
110110

tls-client/HelloHttpsClient.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Hello world example of a TLS client: fetch an HTTPS page
33
*
4-
* Copyright (C) 2006-2017, ARM Limited, All Rights Reserved
4+
* Copyright (C) 2006-2017, Arm Limited, All Rights Reserved
55
* SPDX-License-Identifier: Apache-2.0
66
*
77
* Licensed under the Apache License, Version 2.0 (the "License"); you may
@@ -16,7 +16,7 @@
1616
* See the License for the specific language governing permissions and
1717
* limitations under the License.
1818
*
19-
* This file is part of mbed TLS (https://tls.mbed.org)
19+
* This file is part of Mbed TLS (https://tls.mbed.org)
2020
*/
2121

2222
#ifndef _HELLOHTTPSCLIENT_H_
@@ -82,13 +82,13 @@ class HelloHttpsClient
8282
int configureTCPSocket();
8383

8484
/**
85-
* Configure the mbed TLS structures required to establish a TLS connection
85+
* Configure the Mbed TLS structures required to establish a TLS connection
8686
* with the server
8787
*/
8888
int configureTlsContexts();
8989

9090
/**
91-
* Wrapper function around TCPSocket that gets called by mbed TLS whenever
91+
* Wrapper function around TCPSocket that gets called by Mbed TLS whenever
9292
* we call mbedtls_ssl_read()
9393
*
9494
* \param[in] ctx
@@ -104,7 +104,7 @@ class HelloHttpsClient
104104
static int sslRecv(void *ctx, unsigned char *buf, size_t len);
105105

106106
/**
107-
* Wrapper function around TCPSocket that gets called by mbed TLS whenever
107+
* Wrapper function around TCPSocket that gets called by Mbed TLS whenever
108108
* we call mbedtls_ssl_write()
109109
*
110110
* \param[in] ctx
@@ -160,7 +160,7 @@ class HelloHttpsClient
160160
static const char *DRBG_PERSONALIZED_STR;
161161

162162
/**
163-
* Length of error string buffer for logging failures related to mbed TLS
163+
* Length of error string buffer for logging failures related to Mbed TLS
164164
*/
165165
static const size_t ERROR_LOG_BUFFER_LENGTH;
166166

tls-client/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Hello world example of a TLS client: fetch an HTTPS page
33
*
4-
* Copyright (C) 2006-2017, ARM Limited, All Rights Reserved
4+
* Copyright (C) 2006-2017, Arm Limited, All Rights Reserved
55
* SPDX-License-Identifier: Apache-2.0
66
*
77
* Licensed under the Apache License, Version 2.0 (the "License"); you may

0 commit comments

Comments
 (0)