Webserver example for mbed OS 5 - HTTP 1.1 and multi-threaded

Dependencies:   mbed-http

mbed-os-example-http-server

This application demonstrates how to run an HTTP server on an mbed OS 5 device.

Request parsing is done through nodejs/http-parser.

To build

  1. Open mbed_app.json and change the network-interface option to your connectivity method (more info).
  2. Build the project in the online compiler or using mbed CLI.
  3. Flash the project to your development board.
  4. Attach a serial monitor to your board to see the debug messages.

Tested on

  • K64F with Ethernet.
  • NUCLEO_F411RE with ESP8266.

But every networking stack that supports the mbed OS 5 NetworkInterface API should work.

Revision:
1:fe3df398bdf5
Parent:
0:41f820ea137a
--- a/source/http_response_builder.h	Mon Jul 31 15:41:22 2017 +0200
+++ b/source/http_response_builder.h	Mon Jul 31 17:12:21 2017 +0200
@@ -169,7 +169,11 @@
         size_t res_size;
         char* response = build(body, body_size, &res_size);
 
-        return socket->send(response, res_size);
+        nsapi_error_t r = socket->send(response, res_size);
+
+        free(response);
+
+        return r;
     }
 
 private: