Adaptation of the HttpServer by user yueee_yt. This version has improved handling of the HTTP headers (**NOTE**: There are limitations with this implementation and it is not fully functional. Use it only as a starting point.)

Dependents:   DMSupport DMSupport DMSupport DMSupport

Fork of DM_HttpServer by EmbeddedArtists AB

Revision:
11:9dcff8cf906a
Parent:
10:c1c8276af541
diff -r c1c8276af541 -r 9dcff8cf906a HTTPRequestHandler.cpp
--- a/HTTPRequestHandler.cpp	Wed Oct 23 06:58:32 2019 +0000
+++ b/HTTPRequestHandler.cpp	Mon Nov 04 14:29:37 2019 +0000
@@ -127,6 +127,7 @@
         m_headersSent = true;
         writeHeaders();
     }
+
     return m_pTCPSocketConnection->send((char *)buf, len);
 }
 /**