8#include "http_request.h"
60 char *arg_start = NULL;
61 char *val_start = NULL;
64 uint8_t uri_len = uri_end - req->
raw_data;
66 req->
uri = pvPortMalloc(uri_len + 1);
68 req->
uri[uri_len] = 0;
72 uint16_t params_len = strlen(params) - 1;
76 req->
raw_len -= uri_len + params_len + 1;
91 if(val_end == NULL){ val_end = uri_end; }
93 if(arg_start != NULL && val_start != NULL){
95 uint8_t arg_len = val_start++ - arg_start + 1;
96 uint8_t val_len = val_end - val_start + 1;
109 params = val_end + 1;
113 }
while(arg_start != NULL && val_start != NULL && val_end != NULL);
131static uint8_t _http_request_parse_http_version(
http_request_s *req){
136 uint8_t http_version_len = http_version_end - req->
raw_data;
141 req->
raw_data += http_version_len + 2;
142 req->
raw_len -= http_version_len - 2;
166 if(content_length_index != NULL){
168 char *content_length_value = lwip_strnstr(content_length_index,
" ", req->
raw_len) + 1;
171 uint8_t content_length_str_len = content_length_value_end - content_length_value;
173 char *content_length_value_str[content_length_str_len];
174 memmove(content_length_value_str, content_length_value, content_length_str_len);
260 if(req->
uri != NULL){
302 if(!_http_request_parse_method(req)){
303 }
else if(!_http_request_parse_uri(req)){
304 }
else if(!_http_request_parse_http_version(req)){
305 }
else if(!_http_request_parse_headers(req)){
306 }
else if(!_http_request_parse_content(req)){
static char *const http_header_field_str[]
list of HTTP header fields strings.
static const char *const http_methods[]
list of HTTP method strings.
static const char *const http_versions[]
list of HTTP versions strings.
@ HTTP_HEADER_FIELD_CONTENT_LENGTH
void http_request_free(http_request_s *req)
Safely frees an HTTP request instance.
http_request_s * http_request_new(router_fn router)
Creates a new HTTP request instance.
void(* router_fn)(http_request_s *req)
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 ...
http_response_s * http_response_new(void)
Creates a new HTTP response instance.
void http_response_free(http_response_s *res)
Safely frees an HTTP response instance.
HTTP uri parameter object.
http_version_e http_version