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

Dependents:   Smart-WiFly-WebServer WattEye X10Svr SSDP_Server

Revision:
6:fdce4464d92b
Parent:
5:c9b27e718054
Child:
7:99ad7a67f05e
--- a/SW_HTTPServer.h	Tue Jun 25 18:07:43 2013 +0000
+++ b/SW_HTTPServer.h	Tue Jun 25 18:11:10 2013 +0000
@@ -461,6 +461,17 @@
     
     /**
     * Get the underlying wifly object.
+    *
+    * This lets you get to the underlying wifly object in order to
+    * interact with it.
+    *
+    * @code
+    * HTTPServer svr(&wifly, HTTP_SERVER_PORT, "/local/", 30, 10, &pc);
+    * ...
+    * svr->GetWifly()->getWiflyVerString()
+    * @endcode
+    *
+    * returns the wifly option.
     */
     Wifly * GetWifly() { return wifly; };
 
@@ -531,4 +542,3 @@
 };
 #endif //SW_HTTPSERVER_H
 
-