28 #ifndef HOMEPORT_HTTPD_URL_PARSER_H
29 #define HOMEPORT_HTTPD_URL_PARSER_H
70 #define UP_SETTINGS_DEFAULT {\
71 .on_begin = NULL, .on_protocol = NULL, .on_host = NULL, \
72 .on_port = NULL, .on_path_segment = NULL, .on_path_complete = NULL, \
73 .on_key_value = NULL, .on_complete = NULL }
up_string_cb on_path_complete
hpd_error_t(* up_void_cb)(void *data)
hpd_error_t(* up_string_cb)(void *data, const char *parsedSegment, size_t segment_length)
hpd_error_t(* up_pair_cb)(void *data, const char *key, size_t key_length, const char *value, size_t value_length)
hpd_error_t up_complete(struct up *instance)
Informs the parser that the URL is complete.
hpd_error_t up_destroy(struct up *instance)
Destroy URL parser instance.
struct hp_settings settings
hpd_error_t up_add_chunk(struct up *instance, const char *chunk, size_t chunk_size)
Parse a chunk of an URL.
enum hpd_error hpd_error_t
hpd_error_t up_create(struct up **instance, struct up_settings *settings, const hpd_module_t *context, void *data)
Create URL parser instance.
up_string_cb on_path_segment
Settings struct for the URL Parser.