| 742 | } |
| 743 | |
| 744 | const char* http_client::header_value(const char* name) const |
| 745 | { |
| 746 | HTTP_HDR* hdr = get_http_hdr(); |
| 747 | |
| 748 | return hdr != NULL ? http_hdr_entry_value(hdr, name) : NULL; |
| 749 | } |
| 750 | |
| 751 | void http_client::header_disable(const char* name) |
| 752 | { |
no test coverage detected