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: mbed-rtos EthernetInterface FatFileSystemCpp MCP23S17 SDFileSystem mbed
Fork of HTTPServerHelloWorld by
Services/Network/RestApiServer/RestServer.cpp
- Committer:
- wyunreal
- Date:
- 2014-02-02
- Revision:
- 6:b2c4687b421d
- Child:
- 8:3655e9a98f28
File content as of revision 6:b2c4687b421d:
#include "RestServer.h"
RestServer::RestServer(FileSystemLike* aAppSourceFileSystem, FileSystemLike* aLogsFileSystem) {
appSourceFileSystem = aAppSourceFileSystem;
logsFileSystem = aLogsFileSystem;
webServer = new HTTPServer();
webServer->addHandler<SimpleHandler>("/testService");
FSHandler::mount("/local", "/sources");
FSHandler::mount("/msc", "/logs");
webServer->addHandler<FSHandler>("/sources");
webServer->addHandler<FSHandler>("/logs");
}
RestServer::~RestServer() {
delete webServer;
}
void RestServer::bind() {
webServer->bind(80);
}
