HomePort
|
Go to the source code of this file.
Data Structures | |
struct | hp |
Enumerations | |
enum | hp_state { S_ERROR = -1, S_FIELD, S_VALUE, S_COMPLETED } |
Functions | |
hpd_error_t | hp_create (struct hp **instance, struct hp_settings *settings, const hpd_module_t *context) |
hpd_error_t | hp_destroy (struct hp *instance) |
hpd_error_t | hp_on_header_complete (struct hp *instance) |
hpd_error_t | hp_on_header_field (struct hp *instance, const char *field_chunk, size_t length) |
hpd_error_t | hp_on_header_value (struct hp *instance, const char *value_chunk, size_t length) |
static void | hp_reset_buffers (struct hp *instance) |
struct hp |
Definition at line 42 of file httpd_header_parser.c.
Data Fields | ||
---|---|---|
const hpd_module_t * | context | |
char * | field_buffer | |
size_t | field_buffer_size | |
struct hp_settings | settings | |
enum hp_state | state | |
char * | value_buffer | |
size_t | value_buffer_size |
enum hp_state |
Enumerator | |
---|---|
S_ERROR | |
S_FIELD | |
S_VALUE | |
S_COMPLETED |
Definition at line 35 of file httpd_header_parser.c.
hpd_error_t hp_create | ( | struct hp ** | instance, |
struct hp_settings * | settings, | ||
const hpd_module_t * | context | ||
) |
hpd_error_t hp_destroy | ( | struct hp * | instance | ) |
Definition at line 183 of file httpd_header_parser.c.
hpd_error_t hp_on_header_complete | ( | struct hp * | instance | ) |
hpd_error_t hp_on_header_field | ( | struct hp * | instance, |
const char * | field_chunk, | ||
size_t | length | ||
) |
Definition at line 90 of file httpd_header_parser.c.
hpd_error_t hp_on_header_value | ( | struct hp * | instance, |
const char * | value_chunk, | ||
size_t | length | ||
) |
|
static |
Definition at line 55 of file httpd_header_parser.c.