Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C027 C12832 EthernetInterface StatusReporter LM75B MQTT-ansond endpoint_core endpoint_mqtt mbed-rtos mbed
Diff: HTTPTransport.cpp
- Revision:
- 9:ff877db53cfd
- Parent:
- 7:f570eb3f38cd
- Child:
- 10:748fc7052e61
--- a/HTTPTransport.cpp Wed Feb 26 21:29:27 2014 +0000
+++ b/HTTPTransport.cpp Wed Feb 26 21:48:57 2014 +0000
@@ -18,6 +18,12 @@
#include "HTTPTransport.h"
+ // Endpoint Support
+ #include "MBEDEndpoint.h"
+
+ // EmulatedResourceFactory support
+ #include "EmulatedResourceFactory.h"
+
// HTTP Client
HTTPClient _http;
@@ -31,6 +37,20 @@
HTTPTransport::~HTTPTransport() {
}
+ // Load up our endpoint into the IOC
+ bool HTTPTransport::loadEndpoint() {
+ bool success = false;
+
+ return success;
+ }
+
+ // update our endpoint with the IOC
+ bool HTTPTransport::updateEndpoint() {
+ bool success = false;
+
+ return success;
+ }
+
// connect up HTTP
bool HTTPTransport::connect() { return this->m_connected; }