The lib with which to make LPC1768 a simple HTTP server. This have not yet implemented. fopen() DOESN'T WORK after EthernetInterface::connect() is called as using mbed-os 5.4~. See also https://os.mbed.com/questions/80658/HardFault-occurs-when-fopen-is-called-af/ or https://github.com/ARMmbed/mbed-os/issues/6578 and https://github.com/ARMmbed/mbed-os/issues/6624

Fork of HTTP_SERVER by Akifumi Takahashi

Revision:
16:c3920b5b8572
Parent:
15:9b2cfbaf1c12
Child:
17:ce5845164001
--- a/HTTP_SERVER.h	Fri Mar 16 23:17:28 2018 +0000
+++ b/HTTP_SERVER.h	Mon Mar 19 09:25:32 2018 +0000
@@ -52,7 +52,7 @@
     uint16_t port;     //Port number
     int backlog;           //backlog Number of pending connections that can be queued simultaneously
     //  Function
-    bool analyzeRequest(char*,int,char*,char*,char*);
+    bool analyzeRequest(char*,int,char*&,char*&,char*&);
     bool sendResponse(char*,char*,char*);
  
 };