cueOS  2.4
cueOS - Universal Show Control OS for ARM
http_defs.h
1
8#ifndef HTTP_DEFS_H_
9#define HTTP_DEFS_H_
10
11#define STR_COMMON_SP " "
12#define STR_COMMON_CRLF "\r\n"
13#define STR_COMMON_QMRK "?"
14#define STR_COMMON_EQUL "="
15#define STR_COMMON_AMPR "&"
21typedef enum{
37
41typedef enum{
49
53typedef enum{
58
62typedef enum{
69
73typedef enum{
78
79
83static char *const http_status_codes_str[] = {
84 "200 OK",
85 "201 Created",
86 "Accepted",
87 "No Content",
88 "300 Multiple Choices",
89 "301 Moved Permanently",
90 "400 Bad Request",
91 "401 Unauthorized",
92 "403 Forbidden",
93 "404 Not Found",
94 "405 Method Not Allowed",
95 "501 Not Implemented",
96 "502 Bad Gateway",
97 "503 Service Unavailable"
98};
99
103static char *const http_header_field_str[] = {
104 "HTTP/1.1 ",
105 "Content-Type: ",
106 "Content-Length: ",
107 "Content-Encoding: ",
108 "Content-Language: ",
109 "Content-Location: ",
110};
111
115static char *const http_content_types_str[] = {
116 "text/plain",
117 "text/html",
118 "application/json; charset=UTF8",
119};
120
124static const char *const http_methods[] = {
125 "GET",
126 "POST",
127 "PUT",
128 "PATCH",
129 "DELETE",
130};
131
135static const char *const http_versions[] = {
136 "HTTP/0.9",
137 "HTTP/1.1",
138 "HTTP/2.0"
139};
140
141#endif
142
http_status_code_e
Enumeration of HTTP status codes string indexes.
Definition: http_defs.h:21
http_method_e
Enumeration of HTTP method string indexes.
Definition: http_defs.h:62
static char *const http_status_codes_str[]
list of HTTP status codes strings.
Definition: http_defs.h:83
static char *const http_content_types_str[]
list of HTTP content-types header values strings.
Definition: http_defs.h:115
static char *const http_header_field_str[]
list of HTTP header fields strings.
Definition: http_defs.h:103
static const char *const http_methods[]
list of HTTP method strings.
Definition: http_defs.h:124
http_version_e
Enumeration of HTTP versions string indexes.
Definition: http_defs.h:73
http_content_types_e
Enumeration of HTTP content-types header values string indexes.
Definition: http_defs.h:53
http_header_field_e
Enumeration of HTTP header fields string indexes.
Definition: http_defs.h:41
static const char *const http_versions[]
list of HTTP versions strings.
Definition: http_defs.h:135
@ HTTP_STATUS_CODE_400
Definition: http_defs.h:28
@ HTTP_STATUS_CODE_202
Definition: http_defs.h:24
@ HTTP_STATUS_CODE_404
Definition: http_defs.h:31
@ HTTP_STATUS_CODE_204
Definition: http_defs.h:25
@ HTTP_STATUS_CODE_501
Definition: http_defs.h:33
@ HTTP_STATUS_CODE_503
Definition: http_defs.h:35
@ HTTP_STATUS_CODE_502
Definition: http_defs.h:34
@ HTTP_STATUS_CODE_200
Definition: http_defs.h:22
@ HTTP_STATUS_CODE_301
Definition: http_defs.h:27
@ HTTP_STATUS_CODE_300
Definition: http_defs.h:26
@ HTTP_STATUS_CODE_201
Definition: http_defs.h:23
@ HTTP_STATUS_CODE_405
Definition: http_defs.h:32
@ HTTP_STATUS_CODE_403
Definition: http_defs.h:30
@ HTTP_STATUS_CODE_401
Definition: http_defs.h:29
@ HTTP_PUT
Definition: http_defs.h:65
@ HTTP_DELETE
Definition: http_defs.h:67
@ HTTP_GET
Definition: http_defs.h:63
@ HTTP_POST
Definition: http_defs.h:64
@ HTTP_PATCH
Definition: http_defs.h:66
@ HTTP_VERSION_0_9
Definition: http_defs.h:74
@ HTTP_VERSION_2_0
Definition: http_defs.h:76
@ HTTP_VERSION_1_1
Definition: http_defs.h:75
@ HTTP_CONTENT_TYPE_HTML
Definition: http_defs.h:55
@ HTTP_CONTENT_TYPE_JSON
Definition: http_defs.h:56
@ HTTP_CONTENT_TYPE_PLAIN
Definition: http_defs.h:54
@ HTTP_HEADER_FIELD_CONTENT_LOCATION
Definition: http_defs.h:47
@ HTTP_HEADER_FIELD_CONTENT_LANGUAGE
Definition: http_defs.h:46
@ HTTP_HEADER_FIELD_CONTENT_LENGTH
Definition: http_defs.h:44
@ HTTP_HEADER_FIELD_CONTENT_ENCODING
Definition: http_defs.h:45
@ HTTP_HEADER_FIELD_STATUS_CODE
Definition: http_defs.h:42
@ HTTP_HEADER_FIELD_CONTENT_TYPE
Definition: http_defs.h:43