thingspark example
Dependencies: MbedJSONValue mbed-http HTS221
Diff: source/main-https-socket-reuse.cpp
- Branch:
- mbed-os-5.10
- Revision:
- 30:4825e4f38844
- Parent:
- 29:5ad8f931e4ff
- Child:
- 31:66704f6f17c5
--- a/source/main-https-socket-reuse.cpp Tue Mar 27 11:57:33 2018 +0200
+++ b/source/main-https-socket-reuse.cpp Mon Oct 29 14:34:43 2018 +0800
@@ -7,8 +7,8 @@
#if DEMO == DEMO_HTTPS_SOCKET_REUSE
#include "mbed.h"
-#include "easy-connect.h"
#include "https_request.h"
+#include "network-helper.h"
/* List of trusted root CA certificates
* currently one: Let's Encrypt, the CA for httpbin.org
@@ -54,8 +54,9 @@
}
int main() {
- NetworkInterface* network = easy_connect(true);
+ NetworkInterface* network = connect_to_default_network_interface();
if (!network) {
+ printf("Cannot connect to the network, see serial output\n");
return 1;
}