| 127 | } |
| 128 | |
| 129 | void http_util_set_req_connection(HTTP_UTIL *http_util, const char *value) |
| 130 | { |
| 131 | if (value == NULL || *value == 0) |
| 132 | return; |
| 133 | http_hdr_entry_replace(&http_util->hdr_req->hdr, "Connection", value, 1); |
| 134 | } |
| 135 | |
| 136 | void http_util_set_req_refer(HTTP_UTIL *http_util, const char *refer) |
| 137 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…