| 839 | } |
| 840 | |
| 841 | const char* http_client::request_param(const char* name) const |
| 842 | { |
| 843 | if (!is_request_ && hdr_req_) { |
| 844 | return http_hdr_req_param(hdr_req_, name); |
| 845 | } |
| 846 | return NULL; |
| 847 | } |
| 848 | |
| 849 | const char* http_client::request_cookie(const char* name) const |
| 850 | { |
no test coverage detected