| 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 | } |
| 355 | int Http_AsyncGetDataEx(const cc_string* url, cc_uint8 flags, const cc_string* lastModified, const cc_string* etag, struct StringsBuffer* cookies) { |
| 356 | return Http_Add(url, flags, REQUEST_TYPE_GET, lastModified, etag, NULL, 0, cookies); |
| 357 | } |
no test coverage detected