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.
Fork of HTTPServer by
Diff: LPC2368/services/http/server/HTTPRequestHandler.h
- Revision:
- 6:d753966e4d97
- Parent:
- 2:356c7fa399ae
--- a/LPC2368/services/http/server/HTTPRequestHandler.h Fri Jul 09 14:45:18 2010 +0000
+++ b/LPC2368/services/http/server/HTTPRequestHandler.h Thu Aug 05 15:12:27 2010 +0000
@@ -21,6 +21,10 @@
THE SOFTWARE.
*/
+/**
+HTTP Request Handler header file.
+*/
+
#ifndef HTTP_REQUEST_HANDLER_H
#define HTTP_REQUEST_HANDLER_H
@@ -28,6 +32,7 @@
//#include "HTTPServer.h"
#include "mbed.h"
+#include "core/netservice.h"
#include <string>
using std::string;
@@ -35,9 +40,11 @@
#include <map>
using std::map;
+///HTTP Server's generic request handler
class HTTPRequestHandler : public NetService
{
public:
+ ///Instantiated by the HTTP Server
HTTPRequestHandler(const char* rootPath, const char* path, TCPSocket* pTCPSocket);
virtual ~HTTPRequestHandler();
