| 81 | } |
| 82 | |
| 83 | void http_util_set_req_entry(HTTP_UTIL *http_util, const char *name, const char *value) |
| 84 | { |
| 85 | if (name && *name && value && *value) |
| 86 | http_hdr_entry_replace(&http_util->hdr_req->hdr, name, value, 1); |
| 87 | } |
| 88 | |
| 89 | void http_util_off_req_entry(HTTP_UTIL *http_util, const char *name) |
| 90 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…