| 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 | } |
| 358 | |
| 359 | static cc_bool Http_UrlDirect(cc_uint8 c) { |
| 360 | return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') |
no test coverage detected