cueOS  2.4
cueOS - Universal Show Control OS for ARM
web_application.h
1
8#ifndef WEB_APPLICATION_H_
9#define WEB_APPLICATION_H_
10
11#include <stdlib.h>
12#include <stdint.h>
13
14
15#define FS_READ_EOF -1
16#define FS_READ_DELAYED -2
18#define FS_FILE_FLAGS_HEADER_INCLUDED 0x01
19#define FS_FILE_FLAGS_HEADER_PERSISTENT 0x02
20#define FS_FILE_FLAGS_HEADER_HTTPVER_1_1 0x04
21#define FS_FILE_FLAGS_SSI 0x08
23#define WEBAPP_HTTP_SERVER_PORT 80
25#ifndef FS_FILE_EXTENSION_T_DEFINED
26typedef void fs_file_extension;
27#endif
28
32typedef struct fs_file {
33 const char *data;
34 int len;
35 int index;
37 uint8_t flags;
39
40
45 const struct fsdata_file *next;
46 const unsigned char *name;
47 const unsigned char *data;
48 int len;
49 uint8_t flags;
50};
51
52
53void web_application_start(void);
54
55#endif
56
struct fs_file fs_file_s
web-content file structure object
void web_application_start(void)
Starts static HTTP server on port 80. This server is ONLY dedicated to serve compiled HTML static fil...
void fs_file_extension
web-content file structure object
fs_file_extension * pextension
const char * data
uint8_t flags
web-content file linked list data structure object
const unsigned char * name
const struct fsdata_file * next
const unsigned char * data