| 288 | } |
| 289 | |
| 290 | HTTP_HDR_ENTRY *http_util_get_res_entry(HTTP_UTIL *http_util, const char *name) |
| 291 | { |
| 292 | if (name == NULL || *name == 0) |
| 293 | return (NULL); |
| 294 | return (http_hdr_entry(&http_util->hdr_res->hdr, name)); |
| 295 | } |
| 296 | |
| 297 | void http_util_set_res_entry(HTTP_UTIL *http_util, const char *name, const char *value) |
| 298 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…