| 2196 | } |
| 2197 | |
| 2198 | const char * |
| 2199 | http_errno_description(enum http_errno err) { |
| 2200 | assert(err < (http_errno)(sizeof(http_strerror_tab)/sizeof(http_strerror_tab[0]))); |
| 2201 | return http_strerror_tab[err].description; |
| 2202 | } |
| 2203 | |
| 2204 | static enum http_host_state |
| 2205 | http_parse_host_char(enum http_host_state s, const char ch) { |
no outgoing calls
no test coverage detected