7#include "http_server.h"
9#include "web_application_content.c"
30static err_t _web_application_open(
struct fs_file *file,
const char *name) {
34 if ((file == NULL) || (
name == NULL)) {
38 for (f = FS_ROOT; f != NULL; f = f->
next) {
39 if (!strcmp(
name, (
const char *)f->
name)) {
66 uint16_t uri_len = strlen(req->
uri);
72 if(uri_len > 0 && req->
uri[uri_len - 1] ==
'/'){
73 char dafault_uri[uri_len + strlen(
"index.html")];
74 memmove(dafault_uri, req->
uri, uri_len);
75 memmove(dafault_uri + uri_len,
"index.html", strlen(
"index.html"));
76 dafault_uri[uri_len + strlen(
"index.html")] = 0;
77 err = _web_application_open(&file_handle, dafault_uri);
79 err = _web_application_open(&file_handle, req->
uri);
static char *const http_status_codes_str[]
list of HTTP status codes strings.
@ HTTP_RESPONSE_IS_STATIC
http_server_s * http_server_init(uint16_t port, router_fn router)
Initialises a new HTTP server instance.
void web_application_start(void)
Starts static HTTP server on port 80. This server is ONLY dedicated to serve compiled HTML static fil...
web-content file structure object
fs_file_extension * pextension
web-content file linked list data structure object
const unsigned char * name
const struct fsdata_file * next
const unsigned char * data