| 1210 | } |
| 1211 | |
| 1212 | HTTP_HDR_RES* http_client::get_respond_head(string* buf) |
| 1213 | { |
| 1214 | if (hdr_res_ == NULL) { |
| 1215 | return (NULL); |
| 1216 | } |
| 1217 | if (buf) { |
| 1218 | ACL_VSTRING* vbf = buf->vstring(); |
| 1219 | http_hdr_build(&hdr_res_->hdr, vbf); |
| 1220 | } |
| 1221 | return hdr_res_; |
| 1222 | } |
| 1223 | |
| 1224 | HTTP_HDR_REQ* http_client::get_request_head(string* buf) |
| 1225 | { |
no test coverage detected