8#include "http_response.h"
25static void _http_response_dynamic_cat(
http_response_s *res,
char *data){
26 uint16_t data_len = strlen(data);
108 itoa(strlen(content), content_length_str, 10);
117 _http_response_dynamic_cat(res, content_length_str);
119 _http_response_dynamic_cat(res, content);
http_status_code_e
Enumeration of HTTP status codes string indexes.
static char *const http_status_codes_str[]
list of HTTP status codes strings.
static char *const http_content_types_str[]
list of HTTP content-types header values strings.
static char *const http_header_field_str[]
list of HTTP header fields strings.
http_content_types_e
Enumeration of HTTP content-types header values string indexes.
@ HTTP_HEADER_FIELD_CONTENT_LENGTH
@ HTTP_HEADER_FIELD_STATUS_CODE
@ HTTP_HEADER_FIELD_CONTENT_TYPE
uint32_t http_response_get_bytes_left(http_response_s *res)
Returns the amount of bytes left to be processed.
http_response_s * http_response_new(void)
Creates a new HTTP response instance.
#define HTTP_RESPONSE_CONTENT_LENGTH_MAX_LENGTH
void http_response_prepare_dynamic(http_response_s *res, http_status_code_e status_code, http_content_types_e content_type, char *content)
Pre-formats response to HTTP response using provided response header parameters.
void http_response_free(http_response_s *res)
Safely frees an HTTP response instance.
@ HTTP_RESPONSE_IS_DYNAMIC
HTTP response structure object.