Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of SW_HTTPServer by
Diff: SW_HTTPServer.h
- 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 -