| 2158 | } |
| 2159 | |
| 2160 | const char * |
| 2161 | http_errno_name(enum http_errno err) { |
| 2162 | assert(((size_t) err) < ARRAY_SIZE(http_strerror_tab)); |
| 2163 | return http_strerror_tab[err].name; |
| 2164 | } |
| 2165 | |
| 2166 | const char * |
| 2167 | http_errno_description(enum http_errno err) { |
nothing calls this directly
no outgoing calls
no test coverage detected