Skip to content

Commit c25af75

Browse files
studavekarAndres Amaya Garcia
authored andcommitted
update the server to os.mbed.com
Related : ARMmbed/mbed-os#5122
1 parent 30da18c commit c25af75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tls-client/main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/** \file main.cpp
2323
* \brief An example TLS Client application
24-
* This application sends an HTTPS request to developer.mbed.org and searches for a string in
24+
* This application sends an HTTPS request to os.mbed.com and searches for a string in
2525
* the result.
2626
*
2727
* This example is implemented as a logic class (HelloHTTPS) wrapping a TCP socket.
@@ -50,7 +50,7 @@
5050

5151
namespace {
5252

53-
const char *HTTPS_SERVER_NAME = "developer.mbed.org";
53+
const char *HTTPS_SERVER_NAME = "os.mbed.com";
5454
const int HTTPS_SERVER_PORT = 443;
5555
const int RECV_BUFFER_SIZE = 600;
5656

@@ -64,7 +64,7 @@ const char *HTTPS_HELLO_STR = "Hello world!";
6464
const char *DRBG_PERS = "mbed TLS helloword client";
6565

6666
/* List of trusted root CA certificates
67-
* currently only GlobalSign, the CA for developer.mbed.org
67+
* currently only GlobalSign, the CA for os.mbed.com
6868
*
6969
* To add more than one root, just concatenate them.
7070
*/

0 commit comments

Comments
 (0)