1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-23 06:25:25 +00:00

Fix: Corrected namespace for igloo_httpp_destroy()

This commit is contained in:
Philipp Schafft 2018-11-14 09:49:16 +00:00
parent c0e27ae2d2
commit d5d1956f52

View File

@ -158,7 +158,7 @@ char ** igloo_httpp_get_any_key(igloo_http_parser_t *parser, igloo_httpp_ns_t ns
void igloo_httpp_free_any_key(char **keys);
int igloo_httpp_addref(igloo_http_parser_t *parser);
int igloo_httpp_release(igloo_http_parser_t *parser);
#define httpp_destroy(x) igloo_httpp_release((x))
#define igloo_httpp_destroy(x) igloo_httpp_release((x))
/* util functions */
igloo_httpp_request_type_e igloo_httpp_str_to_method(const char * method);