HttpServer Library for "mbed-os" which added a snapshot handler.

Dependents:   GR-PEACH-webcam GR-Boards_WebCamera GR-Boards_WebCamera GR-Boards_WebCamera

Fork of HttpServer_snapshot by Renesas

Revision:
9:d117d5f84994
Parent:
6:d9e6379eefac
Child:
10:4ab2f287d06d
--- a/HTTPServer.h	Fri Oct 23 11:02:35 2015 +0000
+++ b/HTTPServer.h	Thu Dec 03 07:57:01 2015 +0000
@@ -250,7 +250,7 @@
                 if (threads[t]) {
                     threads[t]->signal_set(1);
                 } else {
-                    threads[t] = new Thread(HTTPServerChild, (void*)&clients[t]);
+                    threads[t] = new Thread(HTTPServerChild, (void*)&clients[t], osPriorityNormal, 1024 * 3, NULL);
                 }
 #ifdef _DEBUG_HTTP_SERVER_H
                 printf("Forked %d\r\n", t);