| 347 | return Http_Add(url, flags, REQUEST_TYPE_GET, NULL, NULL, NULL, 0, NULL); |
| 348 | } |
| 349 | int Http_AsyncGetHeaders(const cc_string* url, cc_uint8 flags) { |
| 350 | return Http_Add(url, flags, REQUEST_TYPE_HEAD, NULL, NULL, NULL, 0, NULL); |
| 351 | } |
| 352 | int Http_AsyncPostData(const cc_string* url, cc_uint8 flags, const void* data, cc_uint32 size, struct StringsBuffer* cookies) { |
| 353 | return Http_Add(url, flags, REQUEST_TYPE_POST, NULL, NULL, data, size, cookies); |
| 354 | } |
no test coverage detected