| 100 | } |
| 101 | |
| 102 | HTTP_HDR_ENTRY *http_util_get_req_entry(HTTP_UTIL *http_util, const char *name) |
| 103 | { |
| 104 | if (name == NULL || *name == 0) |
| 105 | return (NULL); |
| 106 | return (http_hdr_entry(&http_util->hdr_req->hdr, name)); |
| 107 | } |
| 108 | |
| 109 | void http_util_set_req_content_length(HTTP_UTIL *http_util, int len) |
| 110 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…