Single instance HTTP Server using new Ethernet Interface. Blocking mode only; this improved stability, but the HTTP server must be started from a separate thread.

Dependents:   SmartLight

Fork of HTTPServer by Henry Leinen

Files at this revision

API Documentation at this revision

Comitter:
leihen
Date:
Sun Jun 02 00:37:38 2013 +0000
Parent:
9:c2a1462b9b71
Parent:
8:ccbdf6e28655
Child:
11:3943841e1798
Commit message:
merged, some minor changes and improvements

Changed in this revision

HTTPRequestHandler.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/HTTPRequestHandler.cpp	Sun Jun 02 00:33:56 2013 +0000
+++ b/HTTPRequestHandler.cpp	Sun Jun 02 00:37:38 2013 +0000
@@ -2,7 +2,7 @@
 #include "mbed.h"
 #include "HTTPRequestHandler.h"
 
-#define _DEBUG 0
+#define _DEBUG 1
 
 #if (_DEBUG && !defined(TARGET_LPC11U24))
 #define INFO(x, ...) std::printf("[HTTPRequestHandler : DBG]"x"\r\n", ##__VA_ARGS__);