|
|
@ -2152,15 +2152,13 @@ http_parser_settings_init(http_parser_settings *settings)
|
|
|
|
|
|
|
|
|
|
|
|
const char *
|
|
|
|
const char *
|
|
|
|
http_errno_name(enum http_errno err) {
|
|
|
|
http_errno_name(enum http_errno err) {
|
|
|
|
assert(((size_t) err) <
|
|
|
|
assert(((size_t) err) < ARRAY_SIZE(http_strerror_tab));
|
|
|
|
(sizeof(http_strerror_tab) / sizeof(http_strerror_tab[0])));
|
|
|
|
|
|
|
|
return http_strerror_tab[err].name;
|
|
|
|
return http_strerror_tab[err].name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char *
|
|
|
|
const char *
|
|
|
|
http_errno_description(enum http_errno err) {
|
|
|
|
http_errno_description(enum http_errno err) {
|
|
|
|
assert(((size_t) err) <
|
|
|
|
assert(((size_t) err) < ARRAY_SIZE(http_strerror_tab));
|
|
|
|
(sizeof(http_strerror_tab) / sizeof(http_strerror_tab[0])));
|
|
|
|
|
|
|
|
return http_strerror_tab[err].description;
|
|
|
|
return http_strerror_tab[err].description;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|