Merge pull request #48501 from Faless/js/4.x_http_client_chunk

[HTML5] Use 64KiB chunk size in JS HTTPClient.
This commit is contained in:
Rémi Verschelde 2021-05-06 14:44:19 +02:00 committed by GitHub
commit 7b8a864211
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,7 +34,8 @@ Error make_request(Method p_method, const String &p_url, const Vector<String> &p
static void _parse_headers(int p_len, const char **p_headers, void *p_ref);
int js_id = 0;
int read_limit = 4096;
// 64 KiB by default (favors fast download speeds at the cost of memory usage).
int read_limit = 65536;
Status status = STATUS_DISCONNECTED;
String host;