| 2159 | } |
| 2160 | |
| 2161 | const char * |
| 2162 | http_errno_description(enum http_errno err) { |
| 2163 | assert(((size_t) err) < |
| 2164 | (sizeof(http_strerror_tab) / sizeof(http_strerror_tab[0]))); |
| 2165 | return http_strerror_tab[err].description; |
| 2166 | } |
| 2167 | |
| 2168 | static enum http_host_state |
| 2169 | http_parse_host_char(enum http_host_state s, const char ch) { |
no outgoing calls