| 250 | }; |
| 251 | |
| 252 | inline std::unique_ptr<CHttpRequest> HttpHead(const char *pUrl) |
| 253 | { |
| 254 | auto pResult = std::make_unique<CHttpRequest>(pUrl); |
| 255 | pResult->Head(); |
| 256 | return pResult; |
| 257 | } |
| 258 | |
| 259 | inline std::unique_ptr<CHttpRequest> HttpGet(const char *pUrl) |
| 260 | { |