![]() |
cueOS
2.4
cueOS - Universal Show Control OS for ARM
|
Data Structures | |
struct | http_param_s |
HTTP uri parameter object. More... | |
struct | http_request |
HTTP request object. More... | |
Typedefs | |
typedef struct http_request | http_request_s |
HTTP request object. More... | |
typedef void(* | router_fn) (http_request_s *req) |
Functions | |
http_request_s * | http_request_new (router_fn router) |
Creates a new HTTP request instance. More... | |
void | http_request_free (http_request_s *req) |
Safely frees an HTTP request instance. More... | |
uint8_t | http_request_parse (http_request_s *req, struct pbuf *p) |
Extracts and parses HTTP method headers and content from received data and calls the router function defined during initialisation. router function is in charge of generating response data. It is up to the user to implement such function. More... | |
An HTTP request contains information relative to a received HTTP frame such as its method, header fields and content. Once HTTP requests should be processed through a router function. During routing step it is up to the user to forge response data and forward it to the http request instance to be sent back over to the sender of the request.
typedef struct http_request http_request_s |
HTTP request object.
Definition at line 22 of file http_request.h.
typedef void(* router_fn) (http_request_s *req) |
HTTP request routing function
Definition at line 23 of file http_request.h.
void http_request_free | ( | http_request_s * | req | ) |
Safely frees an HTTP request instance.
req | HTTP request instance to be freed |
Definition at line 247 of file http_request.c.
http_request_s * http_request_new | ( | router_fn | router | ) |
Creates a new HTTP request instance.
router | The router function through which the request should be handled. |
Definition at line 224 of file http_request.c.
uint8_t http_request_parse | ( | http_request_s * | req, |
struct pbuf * | p | ||
) |
Extracts and parses HTTP method headers and content from received data and calls the router function defined during initialisation. router function is in charge of generating response data. It is up to the user to implement such function.
req | http request instance |
*p | pointer to the received data |
Definition at line 293 of file http_request.c.