Http Server : Add a simple light weight HTTP Server Component.

Also add examples, docs and test apps for the HTTP Server.
This commit is contained in:
Anurg Kar
2018-07-03 16:27:41 +05:30
committed by Anurag Kar
parent fec079cd44
commit 656bef7bb7
41 changed files with 7089 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
#ifndef __HTTPD_TESTS_H__
#define __HTTPD_TESTS_H__
#include <http_server.h>
extern httpd_handle_t start_tests(void);
extern void stop_tests(httpd_handle_t hd);
#endif // __HTTPD_TESTS_H__