60 instance -> field_buffer_size = 0;
61 instance -> field_buffer = NULL;
63 instance -> value_buffer_size = 0;
64 instance -> value_buffer = NULL;
72 (*instance) = malloc(
sizeof(
struct hp));
75 (*instance)->context = context;
77 memcpy(&(*instance)->settings, settings,
sizeof(
struct hp_settings));
81 (*instance)->field_buffer_size = 0;
82 (*instance)->field_buffer = NULL;
84 (*instance)->value_buffer_size = 0;
85 (*instance)->value_buffer = NULL;
100 switch (instance->
state) {
115 char *new_buf = realloc(instance->
field_buffer, new_len * (
sizeof(
char)));
119 memcpy(instance->
field_buffer+old_buffer_size, field_chunk, length);
133 if (!instance || !value_chunk)
return HPD_E_NULL;
137 switch (instance->
state) {
142 char *new_buf = realloc(instance->
value_buffer, new_len * (
sizeof(
char)));
146 memcpy(instance->
value_buffer+old_buffer_size, value_chunk, length);
164 switch (instance->
state) {
hpd_error_t hp_on_header_field(struct hp *instance, const char *field_chunk, size_t length)
#define HPD_LOG_RETURN(CONTEXT, E, FMT,...)
hpd_error_t hp_destroy(struct hp *instance)
struct hp_settings settings
hp_string_cb on_field_value_pair
enum hpd_error hpd_error_t
#define HPD_LOG_RETURN_E_ALLOC(CONTEXT)
#define HPD_LOG_RETURN_E_NULL(CONTEXT)
hpd_error_t hp_create(struct hp **instance, struct hp_settings *settings, const hpd_module_t *context)
settings on_field_value_pair
struct hp_settings settings
const hpd_module_t * context
hpd_error_t(* hp_string_cb)(void *data, const char *field, size_t field_length, const char *value, size_t value_length)
hpd_error_t hp_on_header_complete(struct hp *instance)
static void hp_reset_buffers(struct hp *instance)
hpd_error_t hp_on_header_value(struct hp *instance, const char *value_chunk, size_t length)