A simple web server that can be bound to either the EthernetInterface or the WiflyInterface.

Dependents:   Smart-WiFly-WebServer WattEye X10Svr SSDP_Server

Revision:
17:69ff00ce39f4
Parent:
16:6ebacf2946d8
Child:
18:6199558632c0
--- a/SW_HTTPServer.h	Sun Sep 01 19:19:08 2013 +0000
+++ b/SW_HTTPServer.h	Thu Sep 05 22:59:27 2013 +0000
@@ -453,8 +453,10 @@
     * Performance metrics
     */
     typedef struct SW_PERFDATA {
-        SW_PerformanceParam Header;
-        SW_PerformanceParam SendData;
+        SW_PerformanceParam ConnectionAccepted;
+        SW_PerformanceParam HeaderParsed;
+        SW_PerformanceParam ResponseSent;
+        SW_PerformanceParam ConnectionClosed;
         //SW_PerformanceParam SendFile;
     } SW_PerformanceData;
 
@@ -472,6 +474,11 @@
     * Reset performance metrics.
     */
     void ResetPerformanceData();
+    
+    /**
+    * Get performance clock
+    */
+    unsigned int GetPerformanceClock();
 
     /**
     * Get the underlying wifly object.