| 749 | } |
| 750 | |
| 751 | void http_client::header_disable(const char* name) |
| 752 | { |
| 753 | HTTP_HDR* hdr = get_http_hdr(); |
| 754 | |
| 755 | if (hdr != NULL) { |
| 756 | http_hdr_entry_off(hdr, name); |
| 757 | } |
| 758 | } |
| 759 | |
| 760 | bool http_client::header_update(const char* name, const char* value, |
| 761 | bool force_add /* = true */) |
no test coverage detected